-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "flac-bindings",
"version": "3.1.0",
"libflac": "1.4.3",
"libogg": "1.3.5",
"description": "libflac bindings to node.js with easy to use API",
"repository": "https://github.com/melchor629/node-flac-bindings/",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"types": "./lib/index.d.ts"
},
"./api": {
"import": "./lib/api.js",
"types": "./lib/api.d.ts"
},
"./decoder": {
"import": "./lib/decoder/index.js",
"types": "./lib/decoder/index.d.ts"
},
"./encoder": {
"import": "./lib/encoder/index.js",
"types": "./lib/decoder/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "vitest run",
"coverage": "./scripts/coverage.sh",
"install": "node scripts/flac-build.js",
"prebuild": "node ./scripts/flac-prebuild.js",
"lint": "eslint ./lib ./test ./examples",
"build": "rollup --config ./rollup.config.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"flac",
"encoder",
"decoder",
"binding"
],
"author": "melchor9000",
"license": "ISC",
"dependencies": {
"bindings": "^1.5.0",
"debug": "^4.3.4",
"detect-libc": "^2.0.1",
"tar-stream": "^3.0.0"
},
"peerDependencies": {
"cmake-js": "^7.0.0",
"node-addon-api": "^8.0.0"
},
"peerDependenciesMeta": {
"cmake-js": {
"optional": true
},
"node-addon-api": {
"optional": true
}
},
"devDependencies": {
"@melchor629/eslint-config": "^0.1.0",
"@types/debug": "^4.1.7",
"@types/node": "^22.9.0",
"@types/tar-stream": "^3.0.0",
"@types/temp": "^0.9.1",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/eslint-plugin": "^1.1.8",
"cmake-js": "^7.0.0",
"eslint": "^9.0.0",
"jest-extended": "^4.0.0",
"node-addon-api": "^8.0.0",
"rollup": "^4.1.5",
"temp": "^0.9.4",
"typescript": "^5.0.4",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18.0.0",
"electron": "^23.0.0"
},
"binary": {
"napi_versions": [
8
]
},
"funding": {
"type": "individual",
"url": "https://ko-fi.com/melchor629"
},
"files": [
"lib/*",
"src/*",
"scripts/flac-build.js",
"CMakeLists.txt",
"LICENSE",
"readme.md"
]
}