-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.84 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.84 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
{
"author": "kevinwang @kevinwang5658",
"bin": {
"codify": "./bin/run.js"
},
"dependencies": {
"@codifycli/ink-form": "0.0.11",
"@homebridge/node-pty-prebuilt-multiarch": "^0.12.0-beta.5",
"@inkjs/ui": "^2",
"@oclif/core": "^4.0.8",
"@oclif/plugin-autocomplete": "^3.2.24",
"@oclif/plugin-help": "^6.2.4",
"@oclif/plugin-update": "^4.6.13",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"chalk": "^5.3.0",
"codify-schemas": "^1.0.76",
"debug": "^4.3.4",
"detect-indent": "^7.0.1",
"diff": "^7.0.0",
"ink": "^5.1.0",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.0.0",
"jotai": "^2.11.1",
"js-yaml": "^4.1.0",
"js-yaml-source-map": "^0.2.2",
"json-source-map": "^0.6.1",
"latest-semver": "^4.0.0",
"nanoid": "^5.0.9",
"parse-json": "^8.1.0",
"react": "^18.3.1",
"semver": "^7.5.4",
"supports-color": "^9.4.0"
},
"description": "Codify allows users to configure settings, install new packages, and automate their systems using code instead of the GUI. Get set up on a new laptop in one click, maintain a Codify file within your project so anyone can get started and never lose your cool apps or favourite settings again.",
"devDependencies": {
"@memlab/core": "^1.1.39",
"@oclif/prettier-config": "^0.2.1",
"@types/chalk": "^2.2.0",
"@types/debug": "^4.1.12",
"@types/diff": "^7.0.1",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^20",
"@types/react": "^18.3.1",
"@types/semver": "^7.5.4",
"@types/strip-ansi": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"codify-plugin-lib": "^1.0.151",
"esbuild": "^0.24.0",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.51.0",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3.1.13",
"eslint-config-prettier": "^9.0.0",
"ink-testing-library": "^4.0.0",
"memfs": "^4.14.0",
"mocha": "^10",
"oclif": "^4.15.29",
"react-devtools-core": "4.28.5",
"shx": "^0.3.3",
"strip-ansi": "^7.1.0",
"tsx": "^4.7.3",
"typescript": "5.3.3",
"vitest": "^2.1.6"
},
"overrides": {
"ink-form": {
"ink": "^5"
}
},
"engines": {
"node": ">=20.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-update"
],
"topicSeparator": " ",
"topics": {},
"macos": {
"identifier": "com.codify.cli",
"sign": "\"Developer ID Installer: Qingran Wang (PCG246DPVT)\"",
"application-certificate": "Developer ID Application: Qingran Wang (PCG246DPVT)"
},
"update": {
"s3": {
"host": "https://releases.codifycli.com",
"bucket": "cli-releases-v2"
}
}
},
"repository": "kevinwang5658/codify",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"build:release": "npm run pkg && ./scripts/notarize.sh",
"lint": "tsc",
"postpack": "shx rm -f oclif.manifest.json",
"pretarball": "../../../scripts/codesign.sh",
"pkg": "tsx ./scripts/pkg.ts",
"notarize": "./scripts/notarize.sh",
"upload": "./scripts/upload.sh",
"posttest": "npm run lint",
"prepack": "oclif manifest && oclif readme",
"test": "vitest",
"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.7.1",
"bugs": "https://github.com/kevinwang5658/codify/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}