-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "mecab-web-worker",
"version": "0.3.2",
"description": "A web worker for Japanese morphological analysis in the browser using WASM.",
"main": "dist/index.js",
"type": "module",
"files": [
"/dist",
"/src"
],
"scripts": {
"pretest": "npm run build",
"test": "web-test-runner",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "copyfiles -f src/mecab.js src/mecab.d.ts src/mecab.wasm dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leyhline/mecab-web-worker.git"
},
"keywords": [
"mecab",
"japanese",
"language",
"wasm"
],
"author": "Thomas Leyh",
"license": "MIT",
"bugs": {
"url": "https://github.com/leyhline/mecab-web-worker/issues"
},
"homepage": "https://github.com/leyhline/mecab-web-worker#readme",
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@web/test-runner": "^0.16.1",
"@web/test-runner-playwright": "^0.10.0",
"copyfiles": "^2.4.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
}
}