-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.4 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.4 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
{
"name": "preact-alchemy",
"type": "module",
"version": "1.2.1",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./vite": {
"types": "./dist/vite.d.ts",
"default": "./dist/vite.js"
}
},
"files": [
"dist"
],
"license": "MIT",
"author": "Alec Larson",
"repository": {
"type": "git",
"url": "https://github.com/aleclarson/preact-alchemy.git"
},
"prettier": "@alloc/prettier-config",
"scripts": {
"dev": "rimraf dist && tsup --sourcemap --watch",
"build": "rimraf dist && tsup",
"format": "prettier --write .",
"lint": "tsc-lint",
"test": "vitest",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"@jridgewell/remapping": "^2.3.5",
"magic-string": "^0.30.21",
"meriyah": "^7.0.0",
"zimmerframe": "^1.1.4"
},
"peerDependencies": {
"@preact/signals": "*",
"preact": "*",
"rolldown": "*"
},
"peerDependenciesMeta": {
"rolldown": {
"optional": true
}
},
"devDependencies": {
"@alloc/prettier-config": "^1.0.0",
"@preact/signals": "^2.5.1",
"@types/node": "^25.0.3",
"preact": "^10.28.0",
"prettier": "^3.7.4",
"radashi": "^12.7.1",
"rimraf": "^6.1.2",
"rolldown": "1.0.0-rc.1",
"tsc-lint": "^0.1.9",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.16"
}
}