-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "@weblab-notebook/sentencepiece",
"version": "0.1.3",
"description": "Sentencepiece tokenization for natural language processing.",
"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"
},
"files": [
"./dist/index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JanKaul/sentencepiece.git"
},
"keywords": [
"machine_learning",
"albert",
"nlp"
],
"author": "Jan Kaul",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/JanKaul/sentencepiece/issues"
},
"homepage": "https://github.com/JanKaul/sentencepiece#readme",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@rollup/plugin-wasm": "^5.1.2",
"@web/dev-server": "^0.1.22",
"@web/test-runner": "^0.13.16",
"rollup": "^2.56.2",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
}
}