-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.75 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.75 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
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
73
74
75
76
77
78
79
{
"name": "@bunup/dts",
"version": "0.14.53",
"description": "An extremely fast TypeScript declaration bundler built on Bun's native bundler.",
"homepage": "https://github.com/bunup/dts#readme",
"bugs": {
"url": "https://github.com/bunup/dts/issues"
},
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bunup/dts.git"
},
"dependencies": {
"@babel/parser": "^7.28.6",
"coffi": "^0.1.37",
"oxc-minify": "^0.93.0",
"oxc-resolver": "^11.16.2",
"oxc-transform": "^0.93.0",
"picocolors": "^1.1.1",
"std-env": "^3.10.0",
"ts-import-resolver": "^0.1.23"
},
"scripts": {
"build": "bunup --exports --unused",
"dev": "bunup --watch",
"prepare": "bun simple-git-hooks",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"release": "bumpp --commit --push --tag",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:watch": "bun test --watch",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/bun": "^1.3.6",
"@typescript/native-preview": "^7.0.0-dev.20260114.1",
"bumpp": "^10.4.0",
"bunup": "^0.16.17",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"keywords": [
"typescript",
"dts",
"declaration",
"declaration generation",
"bun",
"bun dts"
],
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"module": "./dist/index.js",
"simple-git-hooks": {
"pre-commit": "bun run lint && bun run type-check"
},
"types": "./dist/index.d.ts"
}