-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 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
{
"name": "build-champ",
"version": "1.0.0-beta.9",
"description": "CLI tool to help manage builds of various projects in a single repository",
"types": "src/index.d.ts",
"main": "src/index.js",
"bin": {
"build-champ": "src/index.js"
},
"scripts": {
"exec": "tsx src/index.ts",
"build": "tsc",
"clean": "tsc --build --clean",
"test": "jest",
"lint": "eslint src/**/*.ts test/**/*.ts",
"prepack": "npm run build -- --noEmit false"
},
"repository": "https://github.com/ShadowDog007/build-champ",
"author": "Michael McKnight (https://github.com/ShadowDog007/build-champ)",
"license": "MIT",
"engines": {
"node": ">=24.0.0"
},
"files": [
"src/**/*",
"LICENSE.txt",
"README.md"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tsconfig/node24": "^24.0.4",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/luxon": "^3.7.1",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^10.0.3",
"jest": "^30.3.0",
"memfs": "^4.56.11",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"overrides": {
"glob": "^13.0.6",
"test-exclude": "^8.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^14.0.3",
"dotenv": "^17.3.1",
"dotenv-expand": "^12.0.3",
"glob": "^13.0.6",
"inversify": "^7.11.0",
"lodash": "^4.17.21",
"luxon": "^3.7.2",
"minimatch": "^10.2.4",
"p-queue": "^6.6.2",
"path-scurry": "^2.0.2",
"reflect-metadata": "^0.2.2",
"xml-js": "^1.6.11",
"yaml": "^2.8.2"
}
}