-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "@sctg/sentencepiece-js",
"version": "1.3.3",
"description": "Sentencepiece tokenization for natural language processing, JS version.",
"main": "dist/index.js",
"type": "module",
"exports": {
"imports": "./dist/index.js",
"default": "./dist/index.js"
},
"scripts": {
"build": "./build.sh; rollup --config",
"test": "web-test-runner \"test/**/*.test.js\" \"src/**/*.test.js\" --node-resolve",
"test:watch": "web-test-runner \"test/**/*.test.js\" \"src/**/*.test.js\" --node-resolve --watch",
"develop": "web-dev-server --node-resolve --watch --open",
"convert_models": "node ./test/convertmodels.js"
},
"files": [
"./dist/index.js",
"./dist/index.cjs",
"./dist/index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sctg-development/sentencepiece-js.git"
},
"keywords": [
"machine_learning",
"albert",
"nlp",
"sentencepiece"
],
"author": "devilyouwei, Jan Kaul, Ronan Le Meillat",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sctg-development/sentencepiece-js/issues"
},
"homepage": "https://github.com/sctg-development/sentencepiece-js",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"@rollup/plugin-wasm": "^6.2.2",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.19.0",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.7.0",
"typescript": "^5.6.2"
},
"dependencies": {
"app-root-path": "^3.1.0",
"buffer": "^6.0.3"
},
"publishConfig": {
"access": "public",
"tag": "latest"
}
}