-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.1 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
{
"name": "dynio",
"private": true,
"version": "0.1.9",
"description": "Dynamic input and output GUI. Converts any command that runs on the cli to gui.",
"type": "module",
"scripts": {
"tauri": "tauri",
"gen-schema-files": "npx tsx ./src/lib/stores/schema/generated/generate-files.ts",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json && tsc -p tsconfig.node.json",
"tauri icon": "tauri icon",
"tauri build": "tauri build",
"tauri dev": "tauri dev"
},
"dependencies": {
"@tauri-apps/api": "^1",
"ansi_up": "^6.0.2",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.7",
"showdown": "^2.1.0",
"strip-ansi": "^7.1.0",
"tauri-plugin-fs-watch-api": "github:tauri-apps/tauri-plugin-fs-watch#v1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@eslint/js": "^9.5.0",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.17",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tauri-apps/cli": "^1.5.14",
"@tsconfig/svelte": "^5.0.4",
"@types/eslint__js": "^8.42.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.9",
"@types/showdown": "^2.0.6",
"@unocss/eslint-plugin": "^0.60.4",
"eslint": "^8.57.0",
"eslint-plugin-svelte": "^2.39.3",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.6.0",
"json-refs": "^3.0.15",
"json-schema-to-zod": "^2.1.1",
"prettier": "^3.3.2",
"svelte": "^4",
"svelte-check": "^3.8.1",
"svelte-eslint-parser": "0.37.0",
"ts-json-schema-generator": "^2.3.0",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1",
"unocss": "^0.61.0",
"vite": "^5.3.1",
"vite-tsconfig-paths": "^4.3.2",
"zod": "^3.23.8"
},
"overrides": {
"svelte-eslint-parser": "0.37.0"
}
}