-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.93 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.93 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
{
"name": "@codifycli/plugin-core",
"version": "1.0.0",
"description": "TypeScript library for building Codify plugins to manage system resources (applications, CLI tools, settings) through infrastructure-as-code",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "vitest",
"posttest": "tsc",
"prepublishOnly": "tsc"
},
"bin": {
"codify-build": "./bin/build.js"
},
"keywords": [
"codify",
"plugin",
"infrastructure-as-code",
"iac",
"system-management",
"resource-management",
"configuration-management",
"typescript",
"cli-tools",
"applications",
"system-resources",
"declarative",
"automation"
],
"author": "Kevin Wang <team@codifycli.com>",
"repository": {
"type": "git",
"url": "https://github.com/codifycli/codify-plugin-core.git"
},
"license": "ISC",
"dependencies": {
"@codifycli/schemas": "1.0.0",
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
"ajv": "^8.18.0",
"ajv-formats": "^2.1.1",
"clean-deep": "^3.4.0",
"lodash.isequal": "^4.5.0",
"nanoid": "^5.0.9",
"strip-ansi": "^7.1.0",
"uuid": "^10.0.0",
"zod": "4.1.13"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.2",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@types/lodash.isequal": "^4.5.8",
"@types/node": "^22",
"@types/semver": "^7.5.4",
"@types/sinon": "^17.0.3",
"@types/uuid": "^10.0.0",
"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",
"merge-json-schemas": "^1.0.0",
"shx": "^0.3.3",
"sinon": "^17.0.1",
"ts-node": "^10.9.1",
"tsc-watch": "^6.0.4",
"typescript": "^5",
"vitest": "^4.0.18",
"vitest-mock-extended": "^1.3.1"
},
"engines": {
"node": ">=22.0.0"
}
}