-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "image-sprout",
"version": "1.2.0",
"type": "module",
"bin": {
"image-sprout": "dist/cli/index.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/tmchow/image-sprout"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:cli": "vite build --config vite.cli.config.ts",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json",
"test": "vitest run",
"test:watch": "vitest",
"web": "npm run build && npm run build:cli && node dist/cli/index.js web"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/vite": "^4.1.0",
"@testing-library/svelte": "^5.2.0",
"@tsconfig/svelte": "^5.0.6",
"@types/node": "^24.10.1",
"jsdom": "^26.0.0",
"svelte": "^5.45.2",
"svelte-check": "^4.3.4",
"tailwindcss": "^4.1.0",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^3.1.0"
}
}