-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.93 KB
/
package.json
File metadata and controls
83 lines (83 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
76
77
78
79
80
81
82
83
{
"name": "@cdwr/core",
"version": "1.4.4",
"private": false,
"description": "A set of core utilities for the Codeware ecosystem.",
"repository": {
"type": "git",
"url": "https://github.com/codeware-sthlm/codeware.git",
"directory": "packages/core"
},
"author": {
"name": "Codeware Sthlm",
"email": "hello@codeware.se",
"url": "https://codeware.se"
},
"license": "MIT",
"keywords": [
"CLI",
"Codeware",
"Environment variables",
"Fixtures",
"GitHub Actions",
"Nx",
"Release management",
"Testing",
"Utilities",
"Zod"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@clack/prompts": "^0.11.0",
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.0",
"@nx/devkit": "^22.6.2",
"@nx/plugin": "^22.6.2",
"@octokit/request-error": "^5.0.1",
"chalk": "^4.1.0",
"docker-cli-js": "^2.10.0",
"fast-glob": "^3.3.2",
"http-status-codes": "^2.3.0",
"kill-port": "^2.0.1",
"npm-whoami": "^1.1.4",
"nx": "^22.6.2",
"simple-git": "^3.27.0",
"tcp-port-used": "^1.0.2",
"tiny-invariant": "^1.3.3",
"tree-kill": "^1.2.2",
"vitest": "^1.6.0",
"zod": "^3.23.8"
},
"type": "module",
"exports": {
"./actions": {
"types": "./src/actions.d.ts",
"import": "./actions.js",
"require": "./actions.cjs"
},
"./release": {
"types": "./src/release.d.ts",
"import": "./release.js",
"require": "./release.cjs"
},
"./testing": {
"types": "./src/testing.d.ts",
"import": "./testing.js",
"require": "./testing.cjs"
},
"./utils": {
"types": "./src/utils.d.ts",
"import": "./utils.js",
"require": "./utils.cjs"
},
"./zod": {
"types": "./src/zod.d.ts",
"import": "./zod.js",
"require": "./zod.cjs"
}
}
}