-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.88 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.88 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
{
"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",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"chalk": "^5.3.0",
"codify-schemas": "1.0.42",
"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",
"@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.3",
"@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",
"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",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"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)\""
}
},
"repository": "kevinwang5658/codify",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "tsc && eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"pkg": "tsc && 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.1",
"bugs": "https://github.com/kevinwang5658/codify/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}