-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.72 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
{
"name": "zon",
"version": "0.4.8",
"description": "Explore your line counts",
"repository": "git@github.com:thomasvanlankveld/zon.git",
"author": "Thomas van Lankveld <5240626+thomasvanlankveld@users.noreply.github.com>",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"prepare": "husky && deno run -A scripts/version.ts sync",
"tauri": "tauri",
"prettier-lint": "deno run --no-prompt --allow-env --allow-sys=cpus,uid --allow-read=. --allow-write=./node_modules/.cache/prettier npm:prettier --ignore-unknown --check src",
"prettier-format": "deno run --no-prompt --allow-env --allow-sys=cpus,uid --allow-read=. --allow-write=./node_modules/.cache/prettier,src npm:prettier --ignore-unknown --write src",
"eslint": "deno run --allow-env --allow-sys=cpus --allow-read=. --deny-read=/uSERS --allow-write=.eslintcache npm:eslint src",
"test": "deno run --allow-env --allow-sys=cpus,uid,homedir --allow-read --allow-write --allow-run --allow-ffi=. --allow-net npm:vitest run",
"lint-staged": "deno run --allow-env --allow-read --allow-run=git,deno --allow-write=.git npm:lint-staged",
"bundle-mac-silicon": "tauri build --target aarch64-apple-darwin",
"bundle-mac-intel": "tauri build --target x86_64-apple-darwin",
"release:patch": "deno run -A scripts/release.ts patch",
"release:minor": "deno run -A scripts/release.ts minor"
},
"dependencies": {
"@solidjs/router": "^0.15.3",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-os": "~2.2.1",
"@tauri-apps/plugin-process": "~2.2.0",
"@tauri-apps/plugin-updater": "~2.6.0",
"lucide-solid": "^0.483.0",
"solid-js": "^1.9.5",
"@tauri-apps/api": "^2.3.0",
"@tauri-apps/plugin-shell": "~2.2.1"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@vitejs/plugin-legacy": "^6.0.2",
"@csstools/postcss-bundler": "^2.0.6",
"@csstools/postcss-cascade-layers": "^5.0.1",
"@eslint/js": "^9.22.0",
"@types/eslint__js": "^8.42.3",
"@vitest/eslint-plugin": "^1.1.36",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-solid": "^0.14.5",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.4.3",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"vite": "^6.2.1",
"vite-plugin-solid": "^2.11.6",
"@tauri-apps/cli": "^2.3.1",
"vitest": "^3.0.8",
"semver": "^7.6.3"
},
"lint-staged": {
"src/*": [
"deno task eslint",
"deno task prettier-format"
]
}
}