-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.63 KB
/
package.json
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
{
"name": "@heybrostudio/bun-lib-starter",
"version": "0.0.0",
"type": "module",
"description": "Developing Typescript Libraries with Bun",
"author": {
"name": "Caven",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/heybrostudio/bun-lib-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/heybrostudio/bun-lib-starter.git"
},
"bugs": {
"url": "https://github.com/heybrostudio/bun-lib-starter/issues"
},
"keywords": [
"heybrostudio",
"typescript",
"ts-lib",
"bun"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "tsup",
"test": "bun test",
"lint": "biome lint .",
"lint:fix": "biome lint . --apply",
"format": "biome format . --write",
"typecheck": "tsc --noEmit",
"release": "bumpp --commit --push --tag && npm publish --access public",
"up": "taze major -I",
"prepublishOnly": "bun run build",
"postinstall": "bunx simple-git-hooks"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@heybrostudio/biome-config": "^0.0.6",
"@types/bun": "latest",
"bumpp": "^9.4.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.3",
"tsup": "^8.0.2",
"vite": "^5.2.8"
},
"peerDependencies": {
"typescript": "^5.4.4"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*": "biome lint . --apply"
}
}