-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 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
{
"name": "@cosmicjs/cli",
"version": "1.2.0",
"description": "AI-powered CLI for managing Cosmic CMS through natural language and direct commands",
"type": "module",
"main": "dist/index.js",
"bin": {
"cosmic": "./bin/cosmic"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write src/**/*.ts",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"cosmic",
"cms",
"cli",
"headless-cms",
"ai",
"content-management"
],
"author": "Cosmic <hello@cosmicjs.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmicjs/cli.git"
},
"bugs": {
"url": "https://github.com/cosmicjs/cli/issues"
},
"homepage": "https://www.cosmicjs.com",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@cosmicjs/sdk": "^1.6.0",
"axios": "^1.6.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^12.0.0",
"conf": "^12.0.0",
"dotenv": "16.4.7",
"enquirer": "^2.4.1",
"eventsource": "^2.0.2",
"marked": "^12.0.0",
"marked-terminal": "^7.0.0",
"open": "^10.0.0",
"ora": "^8.0.0",
"puppeteer": "^24.36.1"
},
"devDependencies": {
"@types/eventsource": "^1.1.15",
"@types/node": "^20.0.0",
"prettier": "^3.2.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^4.0.18"
}
}