-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·61 lines (61 loc) · 2.03 KB
/
package.json
File metadata and controls
executable file
·61 lines (61 loc) · 2.03 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
{
"name": "shot.style",
"version": "1.0.0",
"license": "MIT",
"private": true,
"homepage": "./",
"scripts": {
"clean:macos-metadata": "node scripts/clean-macos-metadata.js",
"dev": "npm --prefix ui run dev -- --port 3002 --strictPort",
"prebuild": "npm run clean:macos-metadata",
"build": "node scripts/tauri-before-build.js",
"tauri": "node scripts/tauri-cli.js",
"pretauri:dev": "npm run clean:macos-metadata",
"tauri:dev": "node scripts/tauri-dev.js",
"pretauri:build": "npm run clean:macos-metadata",
"tauri:build": "node scripts/tauri-build.js",
"test": "node -e \"require('fs').mkdirSync('build-temp/vitest-tmp',{recursive:true})\" && cross-env TMPDIR=build-temp/vitest-tmp vitest run",
"test:watch": "node -e \"require('fs').mkdirSync('build-temp/vitest-tmp',{recursive:true})\" && cross-env TMPDIR=build-temp/vitest-tmp vitest"
},
"dependencies": {
"@tauri-apps/api": "2.9.1",
"@tauri-apps/plugin-dialog": "^2.5.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-log": "^2.0.0",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-updater": "^2.0.0",
"@theme-toggles/react": "^4.1.0",
"classnames": "^2.3.1",
"dom-to-image": "^2.6.0",
"fast-average-color": "^9.5.0",
"framer-motion": "^12.33.0",
"hotkeys-js": "^3.13.15",
"html-to-image": "^1.11.13",
"lucide-react": "^0.454.0",
"perfect-freehand": "^1.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"region-screenshot-js": "^1.1.0",
"tauri-plugin-screenshots-api": "^2.2.0"
},
"devDependencies": {
"@tauri-apps/cli": "2.9.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "25.0.10",
"@types/react": "19.2.9",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"jsdom": "^26.1.0",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.7",
"typescript": "5.9.3",
"vitest": "^3.2.4"
},
"overrides": {
"minimatch": "^9.0.5"
},
"engines": {
"node": ">=18.0.0"
}
}