-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1012 Bytes
/
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
{
"name": "jogja",
"version": "0.3.2",
"description": "Project generator for web frameworks. Still for busy and lazy people.",
"main": "./dist/index.js",
"scripts": {
"start": "jiti ./src/index.ts",
"format": "prettier --write ./src",
"build": "tsup ./src/ --clean"
},
"bin": {
"jogja": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sonyarianto/jogja.git"
},
"keywords": [
"project",
"generator",
"framework",
"tooling",
"cli",
"scaffolding",
"yeoman"
],
"author": "Sony Arianto Kurniawan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sonyarianto/jogja/issues"
},
"homepage": "https://github.com/sonyarianto/jogja#readme",
"devDependencies": {
"@types/node": "^20.6.0",
"jiti": "^1.20.0",
"prettier": "^3.0.3",
"tsup": "^7.2.0"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"cleye": "^1.3.2",
"picocolors": "^1.0.0"
}
}