-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"name": "solo2-desktop",
"version": "1.1.1",
"author": {
"name": "oplik0",
"email": "[email protected]",
"url": "https://github.com/oplik0/"
},
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"prepare": "husky install"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@poppanator/sveltekit-svg": "^4.1.3",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tauri-apps/cli": "^1.5.6",
"@tsconfig/svelte": "^5.0.2",
"@types/cookie": "^0.6.0",
"@types/semver": "^7.5.3",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"conventional-changelog-conventionalcommits": "^7.0.0",
"dprint": "^0.45.0",
"eslint": "^8.51.0",
"eslint-plugin-svelte": "^2.34.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"svelte-preprocess": "^5.1.3",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.12"
},
"type": "module",
"dependencies": {
"@fontsource/fira-mono": "^5.0.8",
"@tauri-apps/api": "^1.5.0",
"fluent-svelte-extra": "^1.5.5",
"semver": "^7.5.4",
"svelte-spa-router": "^4.0.0",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#dev"
},
"repository": {
"type": "git",
"url": "https://github.com/oplik0/solo2-gui.git"
},
"packageManager": "[email protected]",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": "^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,cjs,mjs,json,md,toml,svelte}": "dprint fmt"
}
}