-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.47 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
{
"name": "map-editor-2d",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "node scripts/ensure-husky.mjs && tauri dev",
"build": "tauri build --debug",
"preview": "vite preview",
"clippy": "cargo clippy --manifest-path ./src-tauri/Cargo.toml -- -D warnings",
"tauri": "tauri",
"test": "node scripts/ensure-husky.mjs && vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"cargo-test": "cd src-tauri && cargo test",
"step-ci-test": "yarn coverage",
"step-rust-dev": "vite",
"step-rust-build": "tsgo --noEmit && vite build",
"lint": "yarn oxlint --report-unused-disable-directives",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"typecheck": "tsgo --noEmit",
"typecheck:tsc": "tsc --noEmit",
"setup:hooks": "node scripts/ensure-husky.mjs",
"prepare": "husky"
},
"lint-staged": {
"*.@(ts|tsx|mts|js|jsx|mjs|cjs)": [
"oxlint --fix --quiet",
"oxfmt --write"
],
"*.@(json|jsonc|json5|md|mdx|yaml|yml|css|scss|sass|html|toml)": "oxfmt --write",
".github/workflows/*.@(yml|yaml)": "actionlint"
},
"dependencies": {
"@tauri-apps/api": "^1.1.0",
"buffer": "^6.0.3",
"dracula-ui": "^1.0.3",
"konva": "^8.3.13",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-konva": "^18.2.3",
"react-modal": "^3.16.1",
"recoil": "^0.7.6",
"semver": "^7.3.8",
"use-image": "^1.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/lodash": "^4.14.186",
"@types/node": "^18.7.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.16.3",
"@types/semver": "^7.3.12",
"@types/uuid": "^8.3.4",
"@typescript/native-preview": "^7.0.0-dev.20260505.1",
"@vitejs/plugin-react-swc": "^4.3.0",
"@vitest/coverage-istanbul": "^3",
"eslint": "^10.3.0",
"eslint-plugin-unicorn": "^64.0.0",
"happy-dom": "^20.9.0",
"husky": "9",
"lint-staged": "^16.4.0",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"typescript": "^5",
"vite": "^6",
"vitest": "^3"
},
"packageManager": "yarn@4.14.1",
"dependenciesMeta": {
"esbuild": {
"built": true
}
},
"resolutions": {
"@types/react": "^18",
"@types/react-dom": "^18"
}
}