-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.53 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
{
"name": "@woifes/node-yasdi",
"version": "1.2.0",
"description": "Node bindings to yasdi library",
"main": "dist/index",
"types": "dist/index",
"files": [
"bin",
"dist",
"binding.gyp"
],
"bin": {
"nodeYasdiShell": "dist/shell/node-yasdi-shell.js",
"createYasdiIniFileContent": "dist/shell/createYasdiIniFileContent.js"
},
"scripts": {
"shell": "node ./dist/shell/node-yasdi-shell.js",
"createIniContent": "node ./dist/shell/createYasdiIniFileContent.js",
"test": "jest",
"compile": "tsc",
"format": "biome format --write .",
"lint": "biome check --apply-unsafe .",
"prepare": "pnpm node-gyp configure && pnpm build && pnpm compile",
"node-gyp": "node-gyp",
"build": "node-gyp build",
"rebuild": "node-gyp rebuild",
"install": "node-gyp rebuild",
"validate": "pnpm format && pnpm lint && pnpm compile && pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woifes/node-yasdi.git"
},
"author": "woifes",
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"debug": "^4.3.2",
"node-addon-api": "^4.2.0",
"node-gyp": "^10.0.1",
"runtypes": "^6.5.1"
},
"devDependencies": {
"@biomejs/biome": "^1.2.2",
"@jest/types": "^29.5.0",
"@types/bindings": "^1.5.1",
"@types/debug": "^4.1.12",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.2",
"@woifes/license-report": "^1.0.1",
"jest": "^27.5.1",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.5.5"
}
}