Skip to content

Commit cc71b42

Browse files
committed
chore: adjust deps
1 parent 7080f8c commit cc71b42

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

package.json

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bun-ts-starter",
33
"version": "0.0.5",
4-
"description": "",
4+
"description": "A simple TypeScript starter kit using Bun.",
55
"author": "Chris Breuer <chris@stacksjs.org>",
66
"license": "MIT",
77
"homepage": "https://github.com/stacksjs/bun-ts-starter#readme",
@@ -24,33 +24,37 @@
2424
"bun": "./src/index.ts",
2525
"types": "./dist/index.d.ts",
2626
"import": "./dist/index.js"
27+
},
28+
"./*": {
29+
"bun": "./src/*",
30+
"import": "./dist/*"
2731
}
2832
},
2933
"module": "./dist/index.js",
3034
"types": "./dist/index.d.ts",
3135
"files": [
32-
"dist"
36+
"dist",
37+
"src"
3338
],
3439
"scripts": {
3540
"build": "bun --bun build.ts",
36-
"lint": "eslint .",
37-
"lint:fix": "eslint . --fix",
41+
"lint": "bunx eslint .",
42+
"lint:fix": "bunx eslint . --fix",
3843
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
3944
"commit": "git cz",
40-
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
45+
"changelog": "bunx changelogen --output CHANGELOG.md",
4146
"prepublishOnly": "bun --bun run build",
42-
"release": "bunx --bun bumpp package.json --all",
43-
"start": "bun --bun src/index.ts",
47+
"release": "bun run changelog && bunx bumpp package.json --all",
4448
"test": "bun test",
4549
"typecheck": "tsc --noEmit"
4650
},
4751
"devDependencies": {
4852
"@stacksjs/eslint-config": "^0.58.73",
53+
"@types/bun": "^1.0.6",
4954
"@types/node": "^20.11.19",
50-
"bun-types": "^1.0.28",
5155
"bumpp": "^9.3.0",
56+
"changelogen": "^0.5.5",
5257
"commitizen": "^4.3.0",
53-
"conventional-changelog-cli": "^4.1.0",
5458
"cz-git": "^1.8.0",
5559
"eslint": "^8.56.0",
5660
"lint-staged": "^15.2.2",

0 commit comments

Comments
 (0)