-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 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
{
"name": "@codifycli/plugin-test",
"version": "1.0.0",
"description": "Testing framework for Codify plugins with complete lifecycle testing, IPC communication, and cross-platform support",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"keywords": [
"codify",
"plugin",
"testing",
"test",
"framework",
"ipc",
"integration-testing",
"plugin-testing"
],
"author": "Kevin Wang <team@codifycli.com>",
"repository": {
"type": "git",
"url": "https://github.com/codifycli/codify-plugin-test.git"
},
"license": "ISC",
"scripts": {
"test": "vitest",
"start": "tsx ./src/index.ts",
"prepublishOnly": "tsc"
},
"dependencies": {
"@codifycli/schemas": "1.0.0",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"lodash.matches": "^4.6.0",
"lodash.differencewith": "4.5.0",
"lodash.unionby": "^4.8.0",
"nanoid": "^5.0.9",
"chalk": "^5.4.1",
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
"strip-ansi": "^7.1.2"
},
"devDependencies": {
"@codifycli/plugin-core": "1.0.0",
"@oclif/prettier-config": "^0.2.1",
"@types/debug": "^4.1.12",
"@types/node": "^22",
"@types/lodash.matches": "^4.6.9",
"@types/lodash.differencewith": "^4.5.9",
"@types/lodash.unionby": "^4.8.9",
"eslint": "^8.51.0",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.0.0",
"tsx": "^4.7.3",
"typescript": "5.3.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
}
}