-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.16 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.16 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
{
"name": "interf",
"version": "2.4.1",
"description": "Enterprise Readiness Protocol \u2014 validate readiness contracts, publish to registry, preview enterprise rollouts",
"type": "module",
"bin": {
"interf": "dist/bin.js"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc && chmod 755 dist/bin.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"typings": "dist/index.d.ts",
"files": [
"dist",
"protocol/skills",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"enterprise-readiness",
"readiness-contract",
"interf",
"enterprise",
"rollout"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/interf-labs/cli.git"
},
"homepage": "https://interf.com",
"engines": {
"node": ">=20"
},
"dependencies": {
"chalk": "^5.4.1",
"yaml": "^2.7.1",
"yargs": "^17.7.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/yargs": "^17.0.33",
"typescript": "^5.8.3",
"vitest": "^4.0.18"
}
}