-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.24 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
{
"name": "@juit/lib-statvfs",
"version": "1.2.2",
"description": "Simple native bindings for \"statvfs\"",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
}
},
"scripts": {
"build": "plug",
"coverage": "plug coverage",
"dev": "plug coverage -w src -w test",
"lint": "plug lint",
"test": "plug test",
"transpile": "plug transpile",
"build-native": "./native/build.sh"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"df",
"disk",
"monitoring",
"statvfs",
"typescript"
],
"author": "Juit Developers <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@plugjs/build": "^0.6.0",
"@types/node": "<19",
"node-gyp": "^10.1.0",
"typescript": "^5.5.2"
},
"directories": {
"test": "test"
},
"files": [
"*.md",
"dist/",
"native/darwin-*",
"native/linux-*",
"native/statvfs.cjs",
"native/statvfs.d.cts",
"src/",
"tsconfig.json"
]
}