-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.17 KB
/
package.json
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": "clairview-template-cli",
"version": "1.0.0",
"description": "CLI Utility for applying templates to a Clairview instance.",
"author": "developers@digi-trans.org",
"bin": {
"clairview-template-cli": "./bin/run"
},
"homepage": "https://github.com/clairview/clairview-template-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "clairview/clairview-template-cli",
"files": [
"/bin",
"/templates",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@clairview/sdk": "^18.0.0",
"@clairview/types": "^12.2.0",
"@oclif/core": "^3.18.1",
"@oclif/plugin-help": "^6.0.12",
"@oclif/plugin-plugins": "^4.1.22",
"axios": "^1.6.7",
"bottleneck": "^2.19.5",
"dotenv": "^16.4.1",
"formdata-node": "^6.0.3",
"giget": "^1.2.1",
"inquirer": "^8.2.5",
"slugify": "^1.6.6"
},
"devDependencies": {
"@oclif/test": "^3.1.13",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.10",
"chai": "^5.0.3",
"eslint": "^8.56.0",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^3.0.41",
"mocha": "^10.2.0",
"oclif": "^4.4.2",
"shx": "^0.3.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"oclif": {
"bin": "clairview-template-cli",
"dirname": "clairview-template-cli",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": "https://github.com/clairview/clairview-template-cli/issues",
"keywords": [
"clairview",
"templates",
"headless cms",
"clairview cms",
"clairview cli"
],
"types": "dist/index.d.ts"
}