-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.94 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
{
"name": "@libreservice/my-ovpn",
"version": "0.3.1",
"files": [
"dist"
],
"appName": "My OVPN",
"homepage": "https://github.com/LibreService/my_ovpn",
"author": {
"name": "Qijia Liu",
"email": "[email protected]",
"url": "https://github.com/eagleoflqj"
},
"license": "AGPL-3.0-or-later",
"scripts": {
"native": "bash scripts/test_native.sh",
"lib": "bash scripts/build_lib.sh",
"wasm": "bash scripts/build_wasm.sh",
"worker": "rollup -c rollup.worker-config.mjs",
"dev": "vite --host",
"lint": "eslint --ext .ts,.js,.vue src test",
"lint:fix": "eslint --ext .ts,.js,.vue --fix src test",
"check": "vue-tsc --noEmit",
"build": "pnpm run check && rm -rf public/*.js.map && NODE_ENV=production pnpm run worker && vite build",
"test": "playwright test test",
"preview": "vite preview --host"
},
"devDependencies": {
"@libreservice/my-widget": "^0.1.2",
"@libreservice/my-worker": "^0.4.0",
"@playwright/test": "^1.35.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@types/node": "^20.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vicons/fa": "^0.12.0",
"@vicons/fluent": "^0.12.0",
"@vicons/material": "^0.12.0",
"@vicons/tabler": "^0.12.0",
"@vitejs/plugin-vue": "^4.2.3",
"client-zip": "^2.4.4",
"esbuild": "^0.18.0",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.14.1",
"naive-ui": "^2.34.4",
"rollup": "^3.24.1",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-pwa": "^0.16.3",
"vite-plugin-run": "^0.4.1",
"vooks": "^0.2.12",
"vue": "^3.3.4",
"vue-router": "^4.2.2",
"vue-tsc": "^1.6.5"
}
}