-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.63 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "zig-build",
"version": "0.3.0",
"description": "Node.js native addon build and cross-compile library using Zig",
"license": "MIT",
"contributors": [
"Raphaël Thériault <raphael.theriault@solarwinds.com>"
],
"repository": "https://github.com/solarwindscloud/zig-build.git",
"homepage": "https://github.com/solarwindscloud/zig-build#readme",
"bugs": "https://github.com/solarwindscloud/zig-build/issues",
"keywords": [
"native",
"addon",
"bindings",
"napi",
"node-api",
"c",
"c++",
"zig",
"build",
"cross"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"build": "tsc",
"lint": "prettier --check . && eslint --max-warnings=0 .",
"test": "swtest -p test/tsconfig.json -c src"
},
"dependencies": {
"chalk": "^4.1.2"
},
"devDependencies": {
"@eslint/js": "^8.50.0",
"@solarwinds-apm/test": "^1.0.0-pre.3",
"@types/node": "^16.0.0",
"@types/shimmer": "^1.0.2",
"@types/sinon": "^10.0.16",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"globals": "^13.22.0",
"prettier": "^3.0.3",
"shimmer": "^1.2.1",
"sinon": "^16.0.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"node-addon-api": "*"
},
"peerDependenciesMeta": {
"node-addon-api": {
"optional": true
}
}
}