-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
73 lines (73 loc) · 1.86 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "kuromojin",
"version": "3.0.0",
"description": "Provide a high level wrapper for kuromoji.js",
"keywords": [
"kuromoji",
"kuromoji.js",
"promise"
],
"homepage": "https://github.com/azu/kuromojin",
"bugs": {
"url": "https://github.com/azu/kuromojin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azu/kuromojin.git"
},
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib/",
"src/"
],
"types": "lib/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"dev": "npm run cp-public && vite",
"preview": "npm run cp-public && vite preview",
"web:build": "npm run cp-public && vite build",
"build": "cross-env NODE_ENV=production tsc -p .",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.{js,ts}\"",
"watch": "tsc -p . --watch",
"cp-public": "mkdir -p public && cp -r node_modules/kuromoji/dict public/",
"netlify": "npm run web:build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"dependencies": {
"@kvs/env": "^2.1.3",
"kuromoji": "0.1.2",
"lru_map": "^0.4.1"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.6",
"cross-env": "^7.0.3",
"lint-staged": "^15.2.0",
"mocha": "^10.2.0",
"node-stdlib-browser": "^1.2.0",
"prettier": "^3.1.1",
"tiny-compressor": "^1.0.1",
"ts-node": "^10.9.2",
"ts-node-test-register": "^10.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vite-plugin-node-stdlib-browser": "^0.2.1"
},
"email": "azuciao@gmail.com",
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}