-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 792 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 792 Bytes
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
{
"name": "create-lynxjs-app",
"version": "0.0.3",
"description": "CLI tool to scaffold new Lynx applications",
"author": "",
"license": "ISC",
"type": "module",
"bin": {
"create-lynx-app": "./bin.js"
},
"files": [
"bin.js",
"dist/**/*"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"watch": "tsc --watch",
"lint": "eslint src/",
"test": "vitest"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"gradient-string": "^3.0.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"typescript": "5.9.2"
},
"keywords": [
"lynx",
"cli",
"scaffold",
"generator"
]
}