-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.74 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.74 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
61
62
63
64
65
66
67
{
"name": "@bdadmin/nestjs",
"version": "1.0.4",
"description": "is a toolkit designed to simplify the creation of administrative dashboards. It provides a set of decorators and utilities for defining DTOs, entities, fields, authentication flows, and more, using metadata to efficiently create and manage complex admin interfaces.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"bin": {
"@bdadmin/nestjs": "dist/cli/index.js"
},
"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-nestjs.git"
},
"keywords": [
"bdui",
"bdadmin",
"admin",
"generator",
"nestjs",
"config",
"typescript",
"decorators",
"json",
"restapi",
"reflect-metadata",
"cli"
],
"author": "Kai Goldman",
"license": "MIT",
"bugs": {
"url": "https://github.com/backend-driven-admin/bdadmin-nestjs/issues"
},
"homepage": "https://github.com/backend-driven-admin/bdadmin-nestjs#readme",
"dependencies": {
"ora": "^8.1.1"
},
"peerDependencies": {
"reflect-metadata": "^0.2.2"
},
"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.5",
"commander": "^13.0.0",
"glob": "^11.0.1",
"rollup": "^4.30.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.1",
"ts-morph": "^25.0.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public"
}
}