-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.94 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.94 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
{
"name": "@bepower/dev",
"version": "1.3.1",
"description": "Configurations and tools for developers (VERY opinionated)",
"keywords": [
"cli",
"development",
"kiro",
"configs",
"tooling"
],
"homepage": "https://github.com/BePower/.github#readme",
"bugs": {
"url": "https://github.com/BePower/.github/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/BePower/.github.git"
},
"license": "MIT",
"author": "BePower",
"type": "module",
"bin": {
"dev": "./dist/index.mjs"
},
"files": [
"dist/**/*",
"configs/**/*",
"kiro/**/*",
"workflows/**/*",
"templates/**/*"
],
"scripts": {
"build": "tsdown",
"clean": "rimraf dist",
"lint": "concurrently npm:lint:* --prefixColors auto",
"lint:engines": "ls-engines",
"lint:format": "biome check --write",
"lint:lockfile": "lockfile-lint",
"lint:package": "npmPkgJsonLint .",
"lint:sort_package": "sort-package-json \"package.json\"",
"lint:typecheck": "tsc --noEmit",
"prepare": "[ -n \"$CI\" ] || [ -n \"$CODEBUILD_BUILD_ID\" ] || lefthook install",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"commander": "^14.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.0",
"bonvoy": "^0.13.1",
"concurrently": "^9.2.1",
"lefthook": "^2.1.4",
"lockfile-lint": "^5.0.0",
"ls-engines": "^0.10.0",
"npm-package-json-lint": "^9.1.0",
"rimraf": "^6.1.3",
"sort-package-json": "^3.6.1",
"tsdown": "^0.21.4",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"engines": {
"node": ">= 22"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}