-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 3.83 KB
/
package.json
File metadata and controls
140 lines (140 loc) · 3.83 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"author": "kevinwang @kevinwang5658",
"bin": {
"codify": "./bin/run.js"
},
"dependencies": {
"@inkjs/ui": "^1.0.0",
"@oclif/core": "^4.0.8",
"@oclif/plugin-help": "^6.2.4",
"@oclif/plugin-plugins": "^5.3.3",
"@oclif/plugin-autocomplete": "3.2.4",
"@oclif/plugin-commands": "4.0.16",
"@oclif/plugin-update": "4.5.9",
"@oclif/plugin-version": "2.2.13",
"@oclif/plugin-warn-if-update-available": "3.1.17",
"@oclif/plugin-which": "3.2.14",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"chalk": "^5.3.0",
"codify-schemas": "1.0.45",
"debug": "^4.3.4",
"ink": "^4.4.1",
"parse-json": "^8.1.0",
"react": "^18.3.1",
"semver": "^7.5.4",
"supports-color": "^9.4.0",
"json-source-map": "^0.6.1",
"js-yaml": "^4.1.0",
"js-yaml-source-map": "^0.2.2"
},
"description": "Codify is a set up as code tool for developers",
"devDependencies": {
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-wasm": "^6.2.2",
"@types/chai": "^4",
"@types/chai-as-promised": "^7.1.7",
"@types/chalk": "^2.2.0",
"@types/debug": "^4.1.12",
"@types/mocha": "^9.0.0",
"@types/mock-fs": "^4.13.3",
"@types/node": "^18",
"@types/react": "^18.3.1",
"@types/semver": "^7.5.4",
"@types/js-yaml": "^4.0.9",
"@types/strip-ansi": "^5.2.1",
"chai": "^4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.51.0",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.0.0",
"mocha": "^10",
"mock-fs": "^5.2.0",
"oclif": "4.13.12",
"rollup": "^4.12.0",
"rollup-plugin-copy": "^3.5.0",
"shx": "^0.3.3",
"strip-ansi": "^7.1.0",
"tsx": "^4.7.3",
"typescript": "^5",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/kevinwang5658/codify",
"license": "MIT",
"main": "dist/index.js",
"name": "codify",
"type": "module",
"oclif": {
"bin": "codify",
"dirname": "codify",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"@oclif/plugin-autocomplete",
"@oclif/plugin-update",
"@oclif/plugin-warn-if-update-available"
],
"commands": {
"strategy": "explicit",
"target": "./dist/index.js",
"identifier": "COMMANDS"
},
"topicSeparator": " ",
"topics": {
"plan": {
"description": "Say hello to the world and others"
},
"apply": {
"description": "apply"
}
},
"macos": {
"identifier": "com.codify.cli",
"sign": "\"Developer ID Installer: Qingran Wang (PCG246DPVT)\""
},
"update": {
"s3": {
"host": "https://releases.codifycli.com",
"bucket": "cli-releases"
}
},
"warn-if-update-available": {
"timeoutInDays": 7
}
},
"repository": "kevinwang5658/codify",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "tsc && eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"pkg": "shx rm -rf dist && rollup -c && oclif pack macos -r .",
"posttest": "npm run lint",
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"start:dev": "./bin/dev.js",
"start:vm": "npm run build && npm run pack:macos && npm run start:vm"
},
"version": "0.0.4",
"bugs": "https://github.com/kevinwang5658/codify/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}