-
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) · 990 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 990 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/atlas",
"version": "0.0.2",
"description": "A prompt-based dashboard to execute certain RAGE related operations",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rage-js/atlas.git"
},
"keywords": [
"rage-atlas",
"rage-cli",
"rage",
"ragejs",
"rage-js"
],
"author": "Maghish",
"license": "MIT",
"bugs": {
"url": "https://github.com/rage-js/atlas/issues"
},
"homepage": "https://github.com/rage-js/atlas#readme",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/node": "^22.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"bin": {
"rage-atlas": "./dist/index.js"
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"chalk": "^4.0.0",
"mongodb": "^6.8.0",
"nanospinner": "^1.1.0"
}
}