generated from darkroomengineering/satus
-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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
{
"name": "hamo",
"version": "1.0.0-dev.10",
"description": "hamo means hook, do the math.",
"type": "module",
"workspaces": [
"packages/*",
"playground",
"playground/*"
],
"sideEffects": false,
"unpkg": "./dist/hamo.mjs",
"main": "./dist/hamo.mjs",
"module": "./dist/hamo.mjs",
"types": "./dist/hamo.d.ts",
"exports": {
".": {
"types": "./dist/hamo.d.ts",
"default": "./dist/hamo.mjs"
},
"./dist/*": "./dist/*"
},
"files": [
"dist"
],
"author": "darkroom.engineering",
"license": "MIT",
"bugs": {
"url": "https://github.com/darkroomengineering/hamo/issues"
},
"homepage": "https://github.com/darkroomengineering/hamo",
"repository": {
"type": "git",
"url": "https://github.com/darkroomengineering/hamo"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/darkroomengineering"
},
"scripts": {
"build": "tsdown",
"dev": "bun run --parallel dev:build dev:playground",
"dev:build": "tsdown --watch",
"dev:playground": "bun --filter playground dev",
"version:dev": "npm version prerelease --preid dev --force --no-git-tag-version",
"version:patch": "npm version patch --force --no-git-tag-version",
"version:minor": "npm version minor --force --no-git-tag-version",
"version:major": "npm version major --force --no-git-tag-version",
"postversion": "bun run build",
"publish:main": "npm publish",
"publish:dev": "npm publish --tag dev"
},
"keywords": [
"react",
"hooks"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"tsdown": "^0.21.4",
"typescript": "^5.4.5"
},
"dependencies": {
"nanoevents": "^9.0.0"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
}
}