-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1012 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1012 Bytes
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
{
"name": "@rage-js/cli",
"version": "1.3.1",
"description": "RAGE cli helps you build nodejs applications with RAGE support primarly.",
"main": "index.js",
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@types/node": "^20.14.14",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "ts-node src/index.ts",
"publish": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rage-js/cli.git"
},
"keywords": [
"rage-cli",
"rage",
"ragejs",
"rage-js"
],
"author": "Maghish",
"license": "MIT",
"bugs": {
"url": "https://github.com/rage-js/cli/issues"
},
"homepage": "https://github.com/rage-js/cli#readme",
"dependencies": {
"@inquirer/prompts": "^5.0.4",
"chalk": "^4.0.0",
"mongodb": "^6.7.0",
"nanospinner": "^1.1.0"
},
"bin": {
"rage": "./dist/index.js"
}
}