-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 864 Bytes
/
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
{
"name": "funcwork",
"version": "2.1.2",
"description": "Run pure function in web worker",
"author": "naecoo",
"license": "MIT",
"homepage": "https://github.com/naecoo/funcwork#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/naecoo/funcwork.git"
},
"bugs": {
"url": "https://github.com/naecoo/funcwork/issues"
},
"keywords": [
"web worker",
"shared worker",
"javascript"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node ./build.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^0.31.0",
"esbuild": "^0.9.6",
"eslint": "^8.28.0",
"typescript": "^4.2.3"
}
}