-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.33 KB
/
package.json
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
80
81
82
83
84
85
86
87
{
"name": "@bertdeblock/generate-template-registry",
"version": "0.3.0",
"description": "Generate a template registry for Glint.",
"repository": "https://github.com/bertdeblock/generate-template-registry",
"license": "MIT",
"author": "Bert De Block",
"type": "module",
"bin": {
"generate-template-registry": "bin/generate-template-registry.js"
},
"files": [
"bin/",
"dist/",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "concurrently --group --prefix-colors auto \"npm:lint:*(!fix)\"",
"lint:fix": "concurrently --group --prefix-colors auto \"npm:lint:*:fix\"",
"lint:format": "prettier . --cache --check",
"lint:format:fix": "prettier . --cache --write",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "tsc --noEmit",
"prepack": "tsc --project tsconfig.json",
"start": "pnpm build --watch",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"chalk": "^5.3.0",
"change-case": "^5.4.4",
"execa": "^9.4.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@release-it-plugins/lerna-changelog": "^7.0.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.7.7",
"@types/recursive-readdir": "^2.2.4",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vitest/coverage-v8": "^2.1.3",
"concurrently": "^9.0.1",
"eslint": "^9.13.0",
"eslint-plugin-n": "^17.11.1",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"recursive-copy": "^2.0.14",
"release-it": "^17.10.0",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"uuid": "^10.0.0",
"vitest": "^2.1.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18"
},
"volta": {
"node": "18.19.1"
},
"publishConfig": {
"access": "public"
},
"release-it": {
"git": {
"commitMessage": "Release v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md"
}
}
}
}