-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.11 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
{
"name": "@contentstack/cli-cm-bootstrap",
"description": "Bootstrap contentstack apps",
"version": "2.0.0",
"author": "Contentstack",
"bugs": "https://github.com/contentstack/cli-plugins/issues",
"scripts": {
"build": "pnpm compile && oclif manifest && oclif readme",
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo oclif.manifest.json",
"compile": "tsc -b tsconfig.json",
"postpack": "rm -f oclif.manifest.json",
"prepack": "pnpm compile && oclif manifest && oclif readme",
"version": "oclif readme && git add README.md",
"pretest": "pnpm compile",
"test": "mocha \"test/**/*.test.js\"",
"lint": "eslint \"src/**/*.ts\"",
"format": "eslint \"src/**/*.ts\" --fix"
},
"dependencies": {
"@contentstack/cli-cm-seed": "~2.0.0",
"@contentstack/cli-command": "~2.0.0",
"@contentstack/cli-utilities": "~2.0.0",
"@contentstack/cli-config": "~2.0.0",
"@oclif/core": "^4.11.14",
"inquirer": "12.11.1",
"mkdirp": "^2.1.6",
"tar": "^7.5.22"
},
"devDependencies": {
"@oclif/test": "^4.1.20",
"@types/inquirer": "^9.0.10",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.11.9",
"@types/tar": "^6.1.13",
"chai": "^4.5.0",
"eslint": "^10.6.0",
"mocha": "10.8.2",
"nyc": "^15.1.0",
"oclif": "^4.23.27",
"tmp": "^0.2.7",
"ts-node": "^8.10.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/contentstack/cli",
"keywords": [
"contentstack",
"cli",
"plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "csdx",
"plugin": [
"@contentstack/cli-cm-seed"
],
"repositoryPrefix": "<%- repo %>/blob/main/packages/contentstack-bootstrap/<%- commandPath %>"
},
"csdxConfig": {
"shortCommandName": {
"cm:bootstrap": "BTSTRP"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/contentstack/cli-plugins.git",
"directory": "packages/contentstack-bootstrap"
}
}