-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.34 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
56
57
58
59
60
{
"name": "@bdadmin/cli",
"version": "1.0.4",
"description": "is a CLI package responsible for generating an admin panel",
"main": "dist/index.js",
"bin": {
"@bdadmin/cli": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"format": "biome format --write .",
"lint": "biome lint --write .",
"lint:fix": "biome lint --write --unsafe ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/backend-driven-admin/bdadmin-cli.git"
},
"keywords": [
"bdui",
"bdadmin",
"admin",
"generator",
"react",
"vite",
"typescript",
"cli"
],
"author": "Kai Goldman",
"license": "MIT",
"bugs": {
"url": "https://github.com/backend-driven-admin/bdadmin-cli/issues"
},
"homepage": "https://github.com/backend-driven-admin/bdadmin-cli#readme",
"dependencies": {
"inquirer": "^12.3.2",
"ora": "^8.1.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.10.7",
"commander": "^13.0.0",
"glob": "^11.0.1",
"rollup": "^4.30.1",
"rollup-plugin-copy": "^3.5.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public"
}
}