-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.57 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
{
"name": "eden",
"version": "0.3.1",
"description": "🍀 Eden is an extensible project scaffolding CLI used for bootstrapping projects at Zufall Labs.",
"type": "module",
"main": "dist/index.js",
"bin": {
"eden": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"cli",
"scaffolding",
"project-generator",
"templates",
"golang",
"java",
"quarkus",
"fiber",
"zufall",
"zufall-labs"
],
"author": "Zufall Labs",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/zufall-labs/eden.git"
},
"bugs": {
"url": "https://github.com/zufall-labs/eden/issues"
},
"homepage": "https://github.com/zufall-labs/eden#readme",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"templates"
],
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"@inquirer/prompts": "^3.3.0",
"mustache": "^4.2.0",
"yaml": "^2.3.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/mustache": "^4.2.5",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=18.0.0"
}
}