-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
{
"version": "1.0.5",
"license": "MIT",
"engines": {
"node": ">=10"
},
"gypfile": true,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"src",
"dist",
"binding.gyp"
],
"scripts": {
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"build": "node-gyp rebuild --dist-url=https://electronjs.org/headers",
"test": "node --napi-modules ./test/index.test.js"
},
"name": "node-systeminformation",
"author": "zhoukunpeng",
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/node-systeminformation.esm.js",
"size-limit": [
{
"path": "dist/node-systeminformation.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/node-systeminformation.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^1.6.3"
},
"devDependencies": {
"@types/bindings": "^1.5.1",
"node-gyp": "^10.1.0",
"tsdx": "^0.14.1"
}
}