-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 3.52 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 3.52 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "adminforth",
"version": "1.6.2",
"description": "OpenSource Agent-Native forth-generation admin panel",
"keywords": [
"adminforth",
"agent",
"ai-agent",
"skill.md",
"tool-calling",
"agent-native",
"ai-native",
"ai-first",
"admin-panel",
"backoffice",
"crud",
"nodejs",
"typescript",
"vue",
"tailwind"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"commands/**/*",
"scripts/**/*"
],
"bin": {
"adminforth": "./commands/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/devforth/adminforth.git"
},
"scripts": {
"test": "echo \"Error: no test specified yet\" && exit 1",
"build": "pnpm type-check-spa && rm -rf dist && tsc && pnpm prepareDist",
"--comment-prepareDist": "-rl allows supply the spa without symlinks which allows to not include source code in the package",
"prepareDist": "cp -rL spa dist/",
"rollout-doc": "cd documentation && npm run build && npm run deploy",
"docs": "typedoc",
"--comment_postinstall": "postinstall executed after package installed in other project package and when we do pnpm i in the package",
"postinstall": "node scripts/postinstall.js",
"type-check-spa": "cd spa && pnpm i && pnpx vue-tsc --build --force --noEmit --pretty"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"semantic-release-slack-bot",
{
"packageName": "adminforth",
"notifyOnSuccess": true,
"notifyOnFail": true,
"slackIcon": ":package:",
"markdownReleaseNotes": true
}
]
],
"branches": [
"main",
{
"name": "next",
"prerelease": true
},
{
"name": "test",
"prerelease": true
}
]
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"author": "DevForth (https://devforth.io)",
"license": "MIT",
"type": "module",
"dependencies": {
"@babel/parser": "^7.27.5",
"@clickhouse/client": "^1.4.0",
"@faker-js/faker": "^9.0.3",
"@inquirer/prompts": "^7.4.1",
"@qdrant/js-client-rest": "^1.17.0",
"@scalar/express-api-reference": "^0.9.7",
"@types/express": "^4.17.21",
"ajv": "^8.18.0",
"arg": "^5.0.2",
"ast-types": "^0.14.2",
"better-sqlite3": "^11.10.0",
"bson": "^7.2.0",
"chalk": "^5.4.1",
"connection-string": "^4.4.0",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"esm": "^3.2.25",
"execa": "^9.5.2",
"express": "^4.21.2",
"filewatcher": "^3.0.1",
"fs-extra": "^11.2.0",
"fuse.js": "^7.0.0",
"handlebars": "^4.7.9",
"inquirer": "^12.3.0",
"jiti": "^2.4.2",
"jsonwebtoken": "^9.0.2",
"listr2": "^8.2.5",
"mongodb": "6.6",
"multer": "^2.1.1",
"mysql2": "^3.14.2",
"node-fetch": "^3.3.2",
"pg": "^8.11.5",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"private-ip": "^3.0.2",
"rate-limiter-flexible": "^8.1.0",
"recast": "^0.23.11",
"ws": "^8.18.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@semantic-release/exec": "^7.1.0",
"@semantic-release/github": "^12.0.1",
"@types/node": "^20.14.2",
"semantic-release": "^24.2.1",
"semantic-release-slack-bot": "^4.0.2",
"typescript": "^5.4.5"
}
}