-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 2 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
{
"name": "@libreservice/my-opencc",
"version": "0.3.1",
"files": [
"dist"
],
"appName": "My OpenCC",
"homepage": "https://github.com/LibreService/my_opencc",
"author": {
"name": "Qijia Liu",
"email": "[email protected]",
"url": "https://github.com/eagleoflqj"
},
"license": "AGPL-3.0-or-later",
"scripts": {
"worker": "rollup -c rollup.worker-config.mjs",
"native": "bash scripts/build_native.sh",
"lib": "bash scripts/build_lib.sh",
"wasm": "bash scripts/build_wasm.sh",
"lint": "eslint --ext .ts,.vue src test",
"lint:fix": "eslint --ext .ts,.vue --fix src test",
"dev": "vite --host",
"check": "vue-tsc --noEmit",
"build": "pnpm run check && rm -rf public/*.js.map && NODE_ENV=production pnpm run worker && vite build",
"test": "playwright test --browser all test/",
"preview": "vite preview --host"
},
"devDependencies": {
"@libreservice/lazy-cache": "^0.1.2",
"@libreservice/my-widget": "^0.1.4",
"@libreservice/my-worker": "^0.4.2",
"@playwright/test": "^1.45.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@types/lodash": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vicons/fa": "^0.12.0",
"@vicons/material": "^0.12.0",
"@vitejs/plugin-vue": "^5.0.5",
"client-zip": "^2.4.5",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-vue": "^9.27.0",
"idb": "^8.0.0",
"lodash": "^4.17.21",
"naive-ui": "^2.39.0",
"rollup": "^4.18.1",
"rollup-plugin-esbuild": "^6.1.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vite-plugin-pwa": "^0.20.0",
"vite-plugin-run": "0.4.1",
"vue": "^3.4.32",
"vue-router": "^4.4.0",
"vue-tsc": "^2.0.26"
}
}