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
|
{
"name": "dsk-cli",
"version": "0.1.0",
"description": "DSL Development Kit - Command-line tool for creating Domain-Specific Languages",
"main": "dist/index.js",
"module": "index.ts",
"type": "module",
"bin": {
"dsk": "./dist/index.js"
},
"scripts": {
"build": "bunx tsc",
"dev": "bun run --watch src/index.ts",
"start": "bun run dist/index.js"
},
"devDependencies": {
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/node": "^24.2.1"
},
"peerDependencies": {
"typescript": "^5.9.2"
},
"dependencies": {
"chalk": "^5.5.0",
"chokidar": "^4.0.3",
"commander": "^14.0.0",
"execa": "^9.6.0",
"fs-extra": "^11.3.1",
"inquirer": "^12.9.1"
}
}
|