-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.77 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.77 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "localjson",
"version": "4.0.0",
"description": "LocalJson - A lightweight cross-platform developer tools collection",
"keywords": [
"productivity",
"converter",
"tools",
"developer-tools",
"developer-productivity",
"web",
"desktop"
],
"author": "inRemark <[email protected]> & Corentin Th <[email protected]> (https://github.com/inRemark)",
"license": "GNU GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/inRemark/localjson"
},
"private": true,
"scripts": {
"dev:web": "pnpm --filter @localjson/web dev",
"build:web": "pnpm --filter @localjson/web build",
"dev:desktop": "pnpm --filter @localjson/desktop dev",
"build:desktop": "pnpm --filter @localjson/desktop build",
"dev:wails": "wails dev",
"build:wails": "wails build",
"lint": "pnpm -r lint",
"type-check": "pnpm -r type-check",
"create:tool": "node packages/core/scripts/create-tool.mjs",
"build:locales": "node packages/core/scripts/build-locales-files.mjs",
"release": "node packages/core/scripts/release.mjs",
"changelog": "node packages/core/scripts/getLatestChangelog.mjs"
},
"devDependencies": {
"@antfu/eslint-config": "^5.3.0",
"@iconify-json/mdi": "^1.1.64",
"@intlify/unplugin-vue-i18n": "^11.0.1",
"@playwright/test": "^1.56.1",
"@rushstack/eslint-patch": "^1.15.0",
"@tsconfig/node18": "^18.2.0",
"@types/node": "^20.19.0",
"@unocss/eslint-config": "^66.5.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"cross-env": "^7.0.3",
"eslint": "^9.38.0",
"happy-dom": "^20.0.11",
"hygen": "^6.2.11",
"jsdom": "^24.1.3",
"less": "^4.4.0",
"typescript": "~5.9.3",
"unocss": "^66.5.3",
"unocss-preset-scrollbar": "^0.3.1",
"unplugin-auto-import": "^19.1.1",
"unplugin-icons": "^22.1.0",
"unplugin-vue-components": "^28.7.0",
"vite": "^6.4.1",
"vite-plugin-sitemap": "^0.8.2",
"vite-plugin-vue-markdown": "^0.23.8",
"vite-ssg": "^28.2.2",
"vite-svg-loader": "^5.1.0",
"vitest": "^4.0.2",
"vue-tsc": "^3.1.1"
},
"dependencies": {
"@intlify/unplugin-vue-i18n": "^11.0.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"@vueuse/core": "^13.6.0",
"@vueuse/head": "^1.3.1",
"@vueuse/router": "^13.8.0",
"figue": "^3.1.1",
"naive-ui": "^2.42.0",
"pinia": "^3.0.2",
"prettier": "^3.6.2",
"unocss": "^66.5.3",
"unplugin-auto-import": "^19.1.1",
"unplugin-icons": "^22.1.0",
"unplugin-vue-components": "^28.7.0",
"vite": "^6.4.1",
"vite-plugin-vue-markdown": "^0.23.8",
"vite-svg-loader": "^5.1.0",
"vue": "^3.5.23",
"vue-i18n": "^11.1.10",
"vue-router": "^4.6.1",
"zod": "^4.1.12"
},
"pnpm": {
"overrides": {
"jsdom": "^24.1.3",
"parse5": "^7.2.1"
}
}
}