forked from devforth/adminforth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.61 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
{
"name": "adminforth",
"version": "1.6.2",
"description": "OpenSource Vue3 powered forth-generation admin panel",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"commands/**/*"
],
"bin": {
"adminforth": "./commands/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified yet\" && exit 1",
"build": "rm -rf dist && tsc && npm run prepareDist && npm link",
"--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 npm ci in the package",
"postinstall": "if test -d ./dist/spa/; then cd ./dist/spa/ && npm ci && echo 'installed spa dependencies'; fi",
"install-plugins": "cd ../plugins && sh install-plugins.sh",
"install-adapters": "cd ../adapters && sh install-adapters.sh"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"semantic-release-slack-bot",
{
"notifyOnSuccess": true,
"notifyOnFail": true,
"slackIcon": ":package:",
"markdownReleaseNotes": true
}
]
],
"branches": [
"main",
{
"name": "next",
"prerelease": true
}
]
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"author": "devforth.io",
"license": "ISC",
"type": "module",
"dependencies": {
"@clickhouse/client": "^1.4.0",
"@faker-js/faker": "^9.0.3",
"@types/express": "^5.0.0",
"arg": "^5.0.2",
"better-sqlite3": "^11.5.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.0",
"filewatcher": "^3.0.1",
"fs-extra": "^11.2.0",
"fuse.js": "^7.0.0",
"handlebars": "^4.7.8",
"inquirer": "^12.3.0",
"jsonwebtoken": "^9.0.2",
"listr2": "^8.2.5",
"mongodb": "6.6",
"node-fetch": "^3.3.2",
"pg": "^8.11.5",
"ws": "^8.18.0"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@types/node": "^20.14.2",
"semantic-release": "^24.2.1",
"semantic-release-slack-bot": "^4.0.2",
"typescript": "^5.4.5"
}
}