-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "cros-pinyin",
"version": "0.0.1",
"description": "Chinese pinyin ime for chromeos",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"clone:submodule": "git submodule update --init --recursive",
"build": "npm run build:deps && export PRODUCTION=1 && webpack",
"build:deps": "npm run clone:submodule && cd googlepinyin && npm install && npm run build",
"watch": "webpack --mode development --watch",
"watch:split": "export MANIFEST=ime,decoder DECODER_ENGINE=wasm && webpack --watch"
},
"keywords": [
"shuangpin",
"ime",
"chromeos"
],
"author": "KaiserZh",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.157",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.1",
"@types/vscode": "^1.71.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/parser": "^4.31.2",
"chai": "^4.3.4",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.32.0",
"html-webpack-plugin": "^5.3.2",
"mocha": "^9.1.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.9.1",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"lit": "^2.0.2"
},
"sideEffects": false
}