-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.21 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
{
"name": "scaffinity",
"version": "1.1.0",
"description": "Generate, export, and share project structures as portable JSON blueprints",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"scaffinity": "dist/cli.js"
},
"scripts": {
"build": "tsup src/cli.ts src/index.ts --format cjs --dts",
"dev": "ts-node src/cli.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "node dist/cli.js"
},
"keywords": [
"scaffinity",
"cli",
"boilerplate",
"project-structure",
"generator",
"typescript",
"blueprint"
],
"author": "Deviprasad Rai <dpraidola@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"commander": "^15.0.0",
"fs-extra": "^11.3.5",
"ora": "^9.4.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^26.0.1",
"@types/prompts": "^2.4.9",
"eslint": "^9.39.5",
"globals": "^17.7.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}