-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.63 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
{
"name": "kinu",
"version": "0.1.4",
"description": "Preact UI toolkit. 10x smaller than you think. Intuitive for humans+LLMs.",
"repository": {
"type": "git",
"url": "git+https://github.com/developit/kinu.git"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"style": "./dist/index.css",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"default": "./dist/index.js"
},
"./style.css": "./dist/index.css"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --noEmit false --outDir dist",
"build:demo": "cd demo && pnpm build",
"lint": "tsc && biome lint",
"dev": "vite build --watch",
"bench:size": "node benchmarks/size/run.mjs",
"build:size": "pnpm build && pnpm bench:size",
"test": "vitest run",
"prepublishOnly": "pnpm run build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"peerDependencies": {
"preact": "^10.26.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.8",
"@preact/preset-vite": "^2.10.1",
"@types/node": "^22.15.30",
"preact": "^10.26.9",
"preact-forwardref": "^0.2.0",
"preact-render-to-string": "^6.5.11",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.0.6"
},
"keywords": [
"preact",
"ui",
"ui-toolkit",
"kinu"
],
"author": "Jason Miller (http://developit.dev)",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
}
}