-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.4 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
{
"name": "virtual-drive",
"version": "1.0.1",
"description": "",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"install": "node-gyp rebuild",
"clean": "node-gyp clean",
"build:gyp": "node-gyp configure build",
"build:ts": "tsc",
"start": "node lib/index.js",
"config:gyp": "python gyp.config.py",
"build": "python gyp.config.py && node-gyp clean && node-gyp configure build && tsc",
"start:example:register": "npm run build:ts && node ./dist/examples/register.js",
"start:example:register:debug": "node --inspect-brk ./dist/examples/register.js",
"start:example:get-state": "node ./dist/examples/get-state.js",
"start:example:unregister": "node ./dist/examples/unregister.js",
"start:example:disconnect": "node ./dist/examples/disconnect.js"
},
"author": "",
"license": "ISC",
"gypfile": true,
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.5.0",
"@types/yargs": "^17.0.32",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-mockito": "^2.6.1",
"typescript": "^5.1.6"
},
"dependencies": {
"chokidar": "^3.6.0",
"dotenv": "^16.4.1",
"joi": "^17.12.0",
"tsconfig-paths": "^4.2.0",
"uuid": "^11.0.3",
"yargs": "^17.7.2"
}
}