-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.92 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.92 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
{
"name": "@bertdeblock/gember",
"version": "1.8.0",
"description": "Generators for Ember apps and addons.",
"repository": "https://github.com/bertdeblock/gember",
"license": "MIT",
"author": "Bert De Block",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"gember": "bin/gember.js"
},
"files": [
"bin/",
"dist/",
"templates/",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc --project tsconfig.json",
"dev": "pnpm build --watch",
"format": "prettier . --cache --write",
"gember": "GEMBER_CWD=test/output bin/gember.js",
"lint": "concurrently --group --prefix-colors auto \"pnpm:lint:*(!fix)\"",
"lint:fix": "concurrently --group --prefix-colors auto \"pnpm:lint:*:fix\"",
"lint:format": "prettier . --cache --check",
"lint:js": "eslint . --cache",
"lint:types": "tsc --noEmit",
"prepack": "pnpm build",
"test": "rm -rf test/output && vitest",
"test:coverage": "pnpm build && vitest run --coverage"
},
"dependencies": {
"@napi-rs/clipboard": "^1.1.3",
"change-case": "^5.4.4",
"citty": "^0.2.1",
"consola": "^3.4.2",
"find-up": "^7.0.0",
"fs-extra": "^11.3.4",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^3.2.4",
"combinations": "^1.0.0",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"eslint-plugin-n": "^17.24.0",
"execa": "^9.6.1",
"prettier": "^3.8.1",
"recursive-copy": "^2.0.14",
"release-plan": "^0.17.4",
"type-fest": "^5.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"uuid": "^13.0.0",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">= 18"
},
"volta": {
"node": "24.14.0",
"pnpm": "10.32.1"
}
}