-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.71 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
{
"name": "@solidjs/image",
"version": "0.1.0",
"description": "Optimized image components and Vite tooling for Solid.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs/solid-image.git"
},
"bugs": {
"url": "https://github.com/solidjs/solid-image/issues"
},
"homepage": "https://github.com/solidjs/solid-image#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"env.d.ts"
],
"scripts": {
"build": "tsdown",
"watch": "tsdown --watch",
"test": "vitest run",
"test:node": "vitest run --project node",
"test:browser": "vitest run --project browser",
"test:watch": "vitest",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"sharp": "^0.35.3"
},
"peerDependencies": {
"blurhash": "^2.0.5",
"solid-js": "^1.9.9",
"vite": "^8 || ^9"
},
"peerDependenciesMeta": {
"blurhash": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@tsdown/css": "^0.22.12",
"@types/node": "^25.5.0",
"@vitest/browser": "4.1.10",
"@vitest/browser-playwright": "4.1.10",
"blurhash": "2.0.5",
"playwright": "^1.63.0",
"solid-js": "^1.9.9",
"tsdown": "^0.22.12",
"typescript": "^7.0.0",
"vite": "^8.1.5",
"vite-plugin-solid": "^2.11.11",
"vitest": "^4.0.10"
},
"exports": {
".": "./dist/index.jsx",
"./env": "./env.d.ts",
"./vite": "./dist/vite.js",
"./package.json": "./package.json",
"./style.css": "./dist/style.css"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.13.0"
}