-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"name": "branching-semantic",
"module": "index.ts",
"type": "module",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"exports": {
"./sum": {
"types": "./dist/sum/index.d.ts",
"default": "./dist/sum/index.js"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"scripts": {
"build": "bun run build:types && bun run build:bun",
"build:bun": "bun build ./src/**/index.ts --outdir ./dist --root src",
"build:types": "tsc",
"test": "bun test",
"clean": "git clean -ffxd",
"semantic-release": "semantic-release",
"postinstall": "lefthook uninstall && lefthook install"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@types/bun": "latest",
"bun": "^1.0.25",
"lefthook": "^1.6.0",
"semantic-release": "^23.0.0",
"typescript": "^5.0.0"
}
}