This repository was archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.87 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.87 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
{
"name": "aw-modloader",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"tauri": "tauri",
"smui-theme-light": "smui-theme compile static/smui.css -i src/theme",
"smui-theme-dark": "smui-theme compile static/smui-dark.css -i src/theme/dark",
"prepare": "npm run smui-theme-light && npm run smui-theme-dark"
},
"devDependencies": {
"@material/dom": "^14.0.0",
"@material/snackbar": "^14.0.0",
"@material/theme": "^14.0.0",
"@material/typography": "^14.0.0",
"@smui/button": "^6.1.0",
"@smui/card": "^6.1.0",
"@smui/checkbox": "^6.1.0",
"@smui/circular-progress": "^6.1.0",
"@smui/data-table": "^6.1.0",
"@smui/dialog": "^6.1.0",
"@smui/icon-button": "^6.1.0",
"@smui/linear-progress": "^6.1.0",
"@smui/list": "^6.1.0",
"@smui/menu": "^6.1.0",
"@smui/radio": "^6.1.0",
"@smui/select": "^6.1.0",
"@smui/snackbar": "^6.1.0",
"@smui/textfield": "^6.1.0",
"@smui/top-app-bar": "^6.1.0",
"@sveltejs/adapter-static": "^1.0.0-next.43",
"@sveltejs/kit": "next",
"@tauri-apps/cli": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"smui-theme": "^6.1.3",
"svelte": "^3.50.1",
"svelte-check": "^2.7.1",
"svelte-preprocess": "^4.10.6",
"tslib": "^2.3.1",
"typescript": "^4.9.3",
"vite": "^3.1.3"
},
"type": "module",
"dependencies": {
"@tauri-apps/api": "^1.1.0",
"flag-icons": "^6.6.6",
"svelte-i18n": "^3.4.0"
}
}