-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.38 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
{
"name": "node-openjtalk-binding",
"version": "1.3.0",
"main": "addon.js",
"types": "addon.d.ts",
"license": "(MIT OR Unlicense)",
"description": "Simple binding of OpenJTalk",
"repository": {
"type": "git",
"url": "git+https://github.com/tignear/node-openjtalk-binding.git"
},
"dependencies": {
"@tignear/node-pre-gyp": "^1.1.1",
"node-addon-api": "^6.0.0"
},
"author": "tignear <[email protected]>",
"scripts": {
"test": "node test/test.js",
"docs": "jsdoc -c ./jsdoc.json",
"type": "tsc",
"install": "node-pre-gyp install --fallback-to-build",
"build": "node-pre-gyp install build package"
},
"homepage": "https://tignear.github.io/node-openjtalk-binding/v1.3.0",
"gypfile": true,
"devDependencies": {
"@types/node": "^18.14.0",
"clean-jsdoc-theme": "^4.2.6",
"jsdoc": "^4.0.2",
"node-gyp": "^9.3.1",
"typescript": "^4.9.5"
},
"binary": {
"module_name": "addon",
"module_path": "./prebuild/{node_abi}-napi-v{napi_build_version}-{platform}-{arch}-{libc}-{libc_version}/",
"remote_path": "v{version}",
"package_name": "{module_name}-v{version}-{node_abi}-napi-v{napi_build_version}-{platform}-{arch}-{libc}-{libc_version}.tar.gz",
"host": "https://github.com/tignear/node-openjtalk-binding/releases/download/",
"napi_versions": [
5
]
}
}