-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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": "@wjfe/async-workers",
"version": "0.2.0",
"description": "Provides thread-safe and atomic synchronization objects, and wrappers to easily use web workers with async/await syntax.",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "pwsh -Command \"npx tsc && copy src/workers.d.ts dist/\"",
"postbuild": "publint",
"deploy-pages": "cd ./pages && npm run deploy-pages",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/WJSoftware/wjfe-async-workers.git"
},
"author": {
"email": "webJose@gmail.com",
"name": "José Pablo Ramírez Vargas"
},
"homepage": "https://wjsoftware.github.io/wjfe-async-workers/",
"license": "MIT",
"devDependencies": {
"publint": "^0.2.10",
"typescript": "^5.5.4"
},
"type": "module"
}