-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.2 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.2 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
{
"name": "@agility/cli",
"version": "1.0.0-beta.13.7",
"description": "Agility CLI for working with your content. (Public Beta)",
"repository": {
"type": "git",
"url": "https://github.com/agility/agility-cli.git"
},
"bugs": {
"url": "https://github.com/agility/agility-cli/issues"
},
"homepage": "https://github.com/agility/agility-cli#readme",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc -p .",
"postbuild": "chmod +x dist/index.js",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"test": "jest",
"test:unit": "jest",
"test:integration": "jest --testMatch=\"**/*.integration.test.ts\" --testPathIgnorePatterns=\"/node_modules/|/dist/|/src/index.ts\"",
"debug": "node --inspect-brk -r ts-node/register src/index.ts"
},
"keywords": [
"typescript",
"agility",
"cms",
"headlesscms",
"management-api",
"management-api-cli"
],
"author": "Agility CMS",
"contributors": [
"Joel Varty",
"Aaron Taylor",
"Kevin Tran",
"Mohit Vashishtha"
],
"license": "ISC",
"bin": {
"agility-cli": "dist/index.js",
"agility": "dist/index.js"
},
"overrides": {
"rxjs": "^7.8.2"
},
"dependencies": {
"@agility/content-fetch": "^2.0.10",
"@agility/content-sync": "^1.2.0",
"@agility/management-sdk": "^0.1.38",
"ansi-colors": "^4.1.3",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"cli-progress": "^3.11.2",
"date-fns": "^4.1.0",
"form-data": "^4.0.5",
"fuzzy": "^0.1.3",
"inquirer": "^8.0.0",
"inquirer-checkbox-plus-prompt": "^1.4.2",
"inquirer-fs-selector": "^1.5.0",
"inquirer-fuzzy-path": "^2.3.0",
"inquirer-search-list": "^1.2.6",
"keytar": "^7.9.0",
"log-update": "^5.0.1",
"open": "^8.4.0",
"ora": "^5.4.1",
"tsconfig-paths": "^4.2.0",
"wrap-ansi": "^9.0.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/form-data": "^2.2.1",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.14",
"@types/node": "^18.11.17",
"@types/yargs": "^17.0.17",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}