-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.82 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
{
"name": "@bertdeblock/gember",
"version": "0.6.0",
"description": "Generate components, helpers, modifiers and services in v1/v2 apps/addons.",
"repository": "https://github.com/bertdeblock/gember",
"license": "MIT",
"author": "Bert De Block",
"type": "module",
"bin": {
"gember": "bin/gember.js"
},
"files": [
"bin/",
"dist/",
"documents/",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"gember": "bin/gember.js --path=test/output",
"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:types": "tsc --noEmit",
"prepack": "tsc --project tsconfig.json",
"start": "pnpm build --watch",
"test": "vitest",
"test:coverage": "pnpm build && vitest run --coverage"
},
"dependencies": {
"change-case": "^5.4.4",
"consola": "^3.3.3",
"find-up": "^7.0.0",
"fs-extra": "^11.2.0",
"scaffdog": "^4.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.5",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^2.1.8",
"concurrently": "^9.1.2",
"eslint": "^9.17.0",
"eslint-plugin-n": "^17.15.1",
"execa": "^9.5.2",
"prettier": "^3.4.2",
"recursive-copy": "^2.0.14",
"release-plan": "^0.11.0",
"type-fest": "^4.32.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"uuid": "^11.0.5",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18"
},
"volta": {
"node": "18.19.1",
"pnpm": "9.13.2"
}
}