-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "isoworker",
"version": "0.2.4",
"description": "Isomorphic workerization with dependencies",
"main": "./lib/index.cjs",
"module": "./esm/browser.js",
"browser": {
"./lib/node-worker.cjs": "./lib/worker.cjs",
"./esm/index.mjs": "./esm/browser.js"
},
"exports": {
".": {
"node": "./esm/index.mjs",
"require": "./lib/index.cjs",
"default": "./esm/browser.js"
},
"./node": {
"import": "./esm/index.mjs",
"require": "./lib/node.cjs"
},
"./browser": {
"import": "./esm/browser.js",
"require": "./lib/browser.cjs"
}
},
"types": "lib/index.d.ts",
"author": "Arjun Barrett",
"license": "MIT",
"scripts": {
"build": "yarn lint && yarn build:lib",
"build:lib": "tsc && tsc --project tsconfig.esm.json && node -r ts-node/register scripts/rewriteBuilds.ts",
"lint": "eslint --fix \"src/**/*.ts\"",
"prepack": "yarn build"
},
"repository": "https://github.com/101arrowz/isoworker",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/101arrowz/isoworker/issues"
},
"keywords": [
"worker",
"workerize",
"isomorphic",
"inline"
],
"devDependencies": {
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
}
}