-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 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": "@kobalte/themes",
"version": "0.0.0-dev",
"description": "Theme utilities for Solid & SolidStart",
"type": "module",
"scripts": {
"dev": "pnpm -F @kobalte/themes-dev dev",
"dev:docs": "pnpm -F @kobalte/themes-docs dev",
"check": "biome check",
"build": "tsc && node scripts/build.js",
"format": "biome check --write",
"typecheck": "tsc --noEmit",
"publish:next": "pnpm i && pnpm build && pnpm publish --tag next",
"publish:release": "pnpm i && pnpm build && pnpm publish",
"release": "pnpm tsx scripts/release.ts"
},
"keywords": [
"solid",
"solidjs",
"solidstart",
"theme"
],
"author": "jer3m01 <jer3m01@jer3m01.com>",
"contributors": [
"Sarah <gerrardsarah@gmail.com>",
"Brendan Allan <brendonovich@outlook.com>"
],
"license": "MIT",
"exports": {
".": {
"solid": "./src/index.tsx",
"import": "./src/index.tsx",
"types": "./src/index.tsx"
}
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"solid": "./dist/index.jsx",
"import": "./dist/index.jsx",
"types": "./dist/index.d.ts"
}
}
},
"files": [
"/src",
"/dist"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@octokit/core": "^6.1.4",
"glob": "^11.0.3",
"solid-js": "^1.9.5",
"tsx": "^4.20.3"
},
"peerDependencies": {
"solid-js": "^1.9.1"
},
"packageManager": "pnpm@10.6.2+sha512.47870716bea1572b53df34ad8647b42962bc790ce2bf4562ba0f643237d7302a3d6a8ecef9e4bdfc01d23af1969aa90485d4cebb0b9638fa5ef1daef656f6c1b",
"dependencies": {
"cross-spawn": "^7.0.3",
"typescript": "^5.6.3"
}
}