-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.06 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
{
"name": "origami-generator",
"version": "1.0.3",
"type": "module",
"bin": {
"origami": "./dist/cli.js",
"origami-generator": "./dist/cli.js"
},
"scripts": {
"compile": "bun build ./src/cli.ts --outfile ./dist/cli.js --target node",
"build": "npm run compile",
"prepare": "npm run build",
"start": "node ./dist/cli.js",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"commander": "11.1.0",
"dotenv": "^16.4.7",
"js-yaml": "4.1.0",
"zod": "3.22.4"
},
"author": "Shiro-cha <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Shiro-cha/origami-generator.git"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"keywords": [
"cli",
"typescript",
"origami",
"generator",
"codegen",
"scaffolding",
"boilerplate",
"project-generator",
"commander",
"zod",
"yaml",
"dotenv",
"open-source",
"nodejs",
"bun"
]
}