-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.52 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.52 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
{
"name": "@makerx/ts-toolkit",
"version": "5.0.0-beta.0",
"description": "This cli facilitates the creation of boilerplate files in a new typescript repo",
"repository": "https://github.com/MakerXStudio/ts-toolkit",
"type": "module",
"scripts": {
"audit": "better-npm-audit audit",
"dogfood:init": "tsx scripts/dog-food-init.ts",
"debug": "tsx ./src/run-cli",
"format": "prettier --write .",
"install-local-packages": "npm install @makerx/eslint-config@./packages/eslint -D && npm i -D @makerx/prettier-config@./packages/prettier",
"lint": "npm run build:1-lint",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"build": "run-s build:*",
"build:0-clean": "rimraf dist coverage",
"build:1-lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"build:2-check-types": "tsc -p tsconfig.json",
"build:3-build": "rollup -c --configPlugin typescript",
"build:4-copy-pkg-json": "tsx src/bin/run-cli.ts copy-package-json -c .tstoolkitrc.ts",
"build:5-copy-readme": "copyfiles ./README.md ./dist",
"build:6-copy-templates": "copyfiles --all --up 1 --verbose \"src/templates/**\" ./dist",
"build:7-check-exports": "attw --pack dist",
"test": "vitest run",
"test:coverage": "vitest run --coverage --reporter junit --outputFile test-results.xml",
"test:ci": "vitest run --coverage --reporter junit --outputFile test-results.xml"
},
"engines": {
"node": ">=20.0"
},
"private": false,
"publishConfig": {
"access": "public"
},
"author": "MakerX",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"compare-versions": "^6.1.1",
"cosmiconfig": "^9.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^9.23.0",
"@makerx/eslint-config": "file:packages/eslint",
"@makerx/prettier-config": "file:packages/prettier",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node20": "^20.1.5",
"@types/node": "^22.13.12",
"@vitest/coverage-v8": "^3.0.9",
"better-npm-audit": "^3.11.0",
"copyfiles": "^2.4.1",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.4",
"globals": "^16.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"rollup": "^4.37.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0",
"vitest": "^3.0.9"
}
}