-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.42 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.42 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
{
"name": "@bunup/cli",
"description": "Tools to create, initialize, and evolve Typescript/React libraries built with Bunup",
"version": "0.0.26",
"type": "module",
"files": [
"dist"
],
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"bunup-cli": "./dist/index.js"
},
"scripts": {
"build": "bunup --target bun --exports",
"dev": "bunup --watch",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"type-check": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"release": "bumpp --commit --push --tag",
"prepare": "bun simple-git-hooks"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/bun": "^1.2.23",
"bumpp": "^10.2.3",
"bunup": "^0.14.11",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bunup/cli.git"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"simple-git-hooks": {
"pre-commit": "bun run lint"
},
"homepage": "https://github.com/bunup/cli#readme",
"bugs": {
"url": "https://github.com/bunup/cli/issues"
},
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.11.0",
"giget": "^2.0.0",
"picocolors": "^1.1.1",
"replace-in-file": "^8.3.0"
}
}