-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.12 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.12 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
{
"name": "pentimento-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint:a11y": "svelte-check --fail-on-warnings --tsconfig ./tsconfig.json",
"typecheck": "npm run check && npm --prefix src-electron run typecheck",
"lint": "./scripts/rustfmt-active.sh --check",
"test": "node --test --experimental-strip-types tests/contracts/*.test.mjs tests/ui/*.test.ts",
"verify": "npm run lint && npm run lint:a11y && npm run typecheck && npm run test"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^22.0.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
},
"dependencies": {
"@xyflow/svelte": "^0.1.0",
"clsx": "^2.1.0"
}
}