-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.09 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.09 KB
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
{
"name": "node-word-detection",
"version": "2.1.3",
"description": "sensitive word detection 敏感词(违禁词)检测与替换",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:xiaobaidadada/node-word-detection.git"
},
"scripts": {
"install": "prebuild-install --verbose || npm run build ",
"build": "node-gyp rebuild --release",
"cc-rebuild": " node-gyp rebuild",
"cc-configure": "node-gyp configure",
"go": "node-gyp configure build --debug ",
"prebuildify": "prebuildify --napi "
},
"keywords": [
"sensitive",
"word",
"敏感词",
"filter",
"sensitive word",
"字典查找",
"违禁词"
],
"author": "xiaobaidadada",
"license": "Apache-2.0",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^7.0.0",
"node-gyp-build": "^4.8.4",
"prebuild-install": "^7.1.2"
},
"files": [
"binding.gyp",
"common.gypi",
"prebuilds/**",
"src/**"
],
"devDependencies": {
"prebuild": "^13.0.1",
"prebuildify": "6.0.1"
}
}