-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "servest",
"version": "0.1.1",
"type": "module",
"license": "MIT",
"author": "Rashedin Islam <https://www.rashedin.dev>",
"description": "Add optional backend files and features to any project — ESLint, Prettier, Mongoose, and more.",
"engines": {
"node": ">=20"
},
"bin": {
"servest": "index.js",
"add-servest": "index.js"
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"typecheck": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"backend",
"cli",
"addons",
"utilities",
"project-tools"
],
"files": [
"dist",
"index.js",
"command/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dev-rashedin/servest.git",
"directory": "packages/servest-addons"
},
"bugs": {
"url": "https://github.com/dev-rashedin/servest/issues"
},
"homepage": "https://www.servest.dev/addons",
"dependencies": {
"commander": "^14.0.0",
"kleur": "^4.1.5",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/node": "^24.3.0"
}
}