-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.78 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
{
"name": "@libreservice/my-font-converter",
"version": "0.2.0",
"files": [
"dist"
],
"appName": "My Font Converter",
"homepage": "https://github.com/LibreService/my_font_converter",
"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",
"lib": "bash scripts/build_lib.sh",
"wasm": "bash scripts/build_wasm.sh",
"dev": "vite --host",
"lint": "eslint --ext .ts,.js,.mjs,.vue src test",
"lint:fix": "eslint --ext .ts,.js,.mjs,.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": "bash scripts/test.sh",
"preview": "vite preview --host"
},
"devDependencies": {
"@libreservice/my-widget": "^0.1.3",
"@libreservice/my-worker": "^0.4.0",
"@playwright/test": "^1.35.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vicons/fa": "^0.12.0",
"@vicons/material": "^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": "^17.1.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",
"vue": "^3.3.4",
"vue-tsc": "^1.6.5"
}
}