Skip to content

Commit 9540258

Browse files
committed
added dev dependencies
1 parent f4d54b7 commit 9540258

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

bun.lockb

13.5 KB
Binary file not shown.

package.json

+21-2
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,33 @@
2727
"scraper",
2828
"web-scraping"
2929
],
30+
"repository": {
31+
"url": "https://github.com/muni-town/linktree-parser",
32+
"type": "git"
33+
},
34+
"homepage": "https://github.com/muni-town/linktree-parser/blob/main/README.md",
3035
"license": "MIT",
3136
"devDependencies": {
32-
"@types/bun": "latest"
37+
"@types/bun": "latest",
38+
"prettier": "^3.0.3",
39+
"rimraf": "^5.0.5",
40+
"typescript": "^5.2.2"
3341
},
3442
"peerDependencies": {
3543
"typescript": "^5.0.0"
3644
},
3745
"dependencies": {
3846
"cheerio": "^1.0.0"
39-
}
47+
},
48+
"scripts": {
49+
"build": "bun build --target=node ./src/index.ts --outfile=dist/index.js && bun run build:declaration",
50+
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
51+
"postbuild": "rimraf tsconfig.types.tsbuildinfo"
52+
},
53+
"files": [
54+
"dist/*.js",
55+
"dist/*.d.ts"
56+
],
57+
"main": "dist/index.js",
58+
"types": "dist/index.d.ts"
4059
}

0 commit comments

Comments
 (0)