-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.76 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.76 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
73
{
"name": "@preachjs/themes",
"version": "0.0.6",
"description": "themes provider for preact",
"homepage": "https://github.com/preachjs/themes",
"bugs": {
"url": "https://github.com/preachjs/themes/issues"
},
"repository": {
"url": "git+https://github.com/preachjs/themes.git"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "reaper",
"email": "ahoy@barelyhuman.dev",
"url": "https://reaper.is"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/themes.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": ["dist/*"],
"scripts": {
"dev": "concurrently 'pnpm:build watch'",
"build": "microbundle -f modern",
"build:docs": "pnpm build; pnpm -r build",
"fix": "biome check --fix .",
"prepare": "husky",
"next": "bumpp",
"publint": "publint",
"prepublishOnly": "pnpm build"
},
"license": "MIT",
"nano-staged": {
"*.{js,ts,tsx,json}": ["biome check --fix"],
"*.{md}": ["prettier --write"]
},
"prettier": "@barelyhuman/prettier-config",
"devDependencies": {
"@barelyhuman/prettier-config": "^2.0.2",
"@biomejs/biome": "^1.9.4",
"bumpp": "^9.9.2",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"microbundle": "^0.15.1",
"nano-staged": "^0.8.0",
"preact": "^10",
"prettier": "^3.4.2",
"publint": "^0.2.12",
"typescript": "^5.7.2"
},
"dependencies": {
"@dumbjs/persona": "^0.1.1"
},
"peerDependencies": {
"@preact/signals": "^2.0.1",
"preact": "^10"
},
"packageManager": "pnpm@9.15.9",
"pnpm": {
"overrides": {
"@babel/runtime@<7.26.10": ">=7.26.10",
"@babel/helpers@<7.26.10": ">=7.26.10"
}
}
}