-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 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
{
"name": "contentstack-cli-tsgen",
"description": "Generate TypeScript typings from a Stack.",
"version": "4.8.1",
"author": "Michael Davis",
"bugs": "https://github.com/Contentstack-Solutions/contentstack-cli-tsgen/issues",
"dependencies": {
"@contentstack/cli-command": "^1.7.2",
"@contentstack/cli-utilities": "^1.17.1",
"@contentstack/types-generator": "^3.9.1",
"dotenv": "^16.6.1"
},
"devDependencies": {
"@oclif/plugin-help": "^6.2.37",
"@oclif/test": "^4.1.16",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.10",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^8.57.1",
"eslint-config-oclif": "^6.0.129",
"eslint-config-oclif-typescript": "^3.1.14",
"jest": "^29.7.0",
"oclif": "^4.22.77",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/Contentstack-Solutions/contentstack-cli-tsgen",
"keywords": [
"contentstack",
"cli",
"plugin",
"typescript"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "csdx",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "Contentstack-Solutions/contentstack-cli-tsgen",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc.js --fix",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"test": "jest --testPathPattern=tests",
"version": "oclif readme && git add README.md",
"test:integration": "jest --testPathPattern=tests/integration"
},
"csdxConfig": {
"shortCommandName": {
"tsgen": "TSGEN"
}
}
}