-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.48 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
{
"name": "@ditadi/qwik-hooks",
"version": "0.1.6",
"type": "module",
"description": "A collection of modern, server-safe qwik hooks",
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/bun": "latest",
"bumpp": "^9.4.0",
"vite": "^5.2.7",
"vite-tsconfig-paths": "^4.3.2"
},
"dependencies": {
"@builder.io/qwik": "^1.5.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"author": {
"name": "ditadi",
"url": "https://github.com/ditadi"
},
"repository": {
"type": "git",
"url": "https://github.com/ditadi/qwik-hooks"
},
"scripts": {
"dev": "cd website && bun run dev",
"clean": "tsc --build --clean",
"build": "bun run clean && bun run build.lib && bun run build.types",
"build.lib": "vite build --mode lib",
"build.types": "tsc --emitDeclarationOnly",
"release": "bumpp --commit --tag --push && bun run build && npm publish --access public",
"commit": "git-cz",
"format": "bunx @biomejs/biome check --apply ."
},
"main": "./lib/index.qwik.mjs",
"qwik": "./lib/index.qwik.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.qwik.mjs",
"require": "./lib/index.qwik.cjs",
"types": "./lib/index.d.ts"
}
}
}