-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 KB
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
{
"name": "nodejs-thread-adventures",
"version": "1.0.0",
"description": "Adventuring with multithreading in nodejs. Oh those beautiful race conditions, deadlocks and sync issues, now on Javascript!",
"main": "./app.ts",
"type": "module",
"dependencies": {
"@types/node": "^22.15.21",
"bindings": "^1.5.0",
"node-addon-api": "^8.5.0",
"node-gyp": "^12.1.0",
"typescript": "^5.8.3",
"undici-types": "^6.21.0"
},
"scripts": {
"config": "node-gyp configure",
"build": "node-gyp build",
"test": "echo \"Error: no test specified\" && exit 1",
"ts": "node --experimental-strip-types --disable-warning=ExperimentalWarning",
"ts:watch": "node --experimental-strip-types --disable-warning=ExperimentalWarning --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PozziSan/nodejs-thread-adventures.git"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/PozziSan/nodejs-thread-adventures/issues"
},
"homepage": "https://github.com/PozziSan/nodejs-thread-adventures#readme",
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"singleQuote": true,
"experimentalTernaries": true
}
}