-
-
Notifications
You must be signed in to change notification settings - Fork 258
/
package.json
executable file
·79 lines (79 loc) · 2.14 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
74
75
76
77
78
79
{
"name": "icones",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"author": "Anthony Fu<https://github.com/antfu>",
"license": "MIT",
"homepage": "https://github.com/antfu/icones#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/icones.git"
},
"bugs": {
"url": "https://github.com/antfu/icones/issues"
},
"scripts": {
"postinstall": "esno scripts/prepare.ts",
"prebuild": "esno scripts/prebuild.ts",
"postbuild": "esno scripts/postbuild.ts",
"lint": "eslint .",
"dev": "vite --port 3333 --open",
"dev-pwa": "SW_DEV=true vite --port 3333",
"typecheck": "vue-tsc --noEmit",
"dev:electron": "npm -C ./electron run dev",
"build": "NODE_ENV=production vite build",
"build:electron": "NODE_ENV=production npm -C ./electron run build"
},
"dependencies": {
"@antfu/utils": "^0.7.10",
"@vueuse/core": "^11.1.0",
"dexie": "^4.0.8",
"file-saver": "^2.0.5",
"floating-vue": "^5.2.2",
"fzf": "^0.5.2",
"hotkeys-js": "^3.13.7",
"iconify-icon": "^2.1.0",
"prettier": "^3.3.3",
"vue": "^3.5.11",
"vue-chemistry": "^0.2.2",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.3",
"@iconify/json": "^2.2.258",
"@types/file-saver": "^2.0.7",
"@types/fs-extra": "^11.0.4",
"@vitejs/plugin-vue": "^5.1.4",
"dayjs": "^1.11.13",
"eslint": "^9.12.0",
"eslint-plugin-format": "^0.1.2",
"esno": "^4.8.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"jszip": "^3.10.1",
"lru-cache": "^11.0.1",
"pnpm": "8.10.2",
"shiki": "^1.22.0",
"svg-packer": "^0.0.3",
"typescript": "^5.6.3",
"unocss": "^0.63.4",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.8",
"vite-plugin-pages": "^0.32.3",
"vite-plugin-pwa": "^0.20.5",
"vue-tsc": "^2.1.6"
},
"pnpm": {
"neverBuiltDependencies": [
"electron",
"electron-builder",
"ttf2woff2",
"vite-plugin-electron",
"vite-plugin-electron-renderer",
"vite-plugin-esmodule"
]
}
}