-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "lib-template",
"version": "0.0.0",
"main": "./dist/index.js",
"module": "index.ts",
"description": "Some library",
"scripts": {
"build": "rimraf dist/ && bun build --target=node ./src/index.ts --outfile=dist/index.js && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"postbuild": "rimraf tsconfig.types.tsbuildinfo",
"prepublish": "bun run build",
"publish:npm": "bun prepublish && npm publish",
"lint": "biome check --write .",
"prepare": "husky"
},
"type": "module",
"types": "./dist/index.d.ts",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.9",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"rimraf": "^6.0.1",
"tsc-files": "^1.1.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"files": ["dist"],
"trustedDependencies": ["@biomejs/biome"],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}