-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "session-typed-worker",
"version": "2.0.0",
"description": "A deadlock-free communication API for web workers based on session types.",
"keywords": [
"worker",
"typescript",
"session-types"
],
"homepage": "https://github.com/ahuglajbclajep/session-typed-worker#readme",
"bugs": "https://github.com/ahuglajbclajep/session-typed-worker/issues",
"license": "MIT",
"author": "ahuglajbclajep (https://github.com/ahuglajbclajep)",
"repository": "github:ahuglajbclajep/session-typed-worker",
"main": "lib/index.js",
"module": "lib/index.module.js",
"types": "lib/index.d.ts",
"exports": {
"browser": "./lib/index.module.js",
"require": "./lib/index.js"
},
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@rollup/plugin-babel": "^5.3.1",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"dts-jest": "^23.3.0",
"jest": "^26.6.3",
"rollup": "^2.55.1",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5"
},
"browserslist": "supports es6-module and supports webworkers"
}