-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.62 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
{
"name": "@agent-ix/ix-cli-core",
"description": "Generic framework foundation for building Agent IX CLIs — config service, secrets service, plugin contract, runtime.",
"version": "0.10.0",
"license": "MIT",
"type": "module",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"packageManager": "pnpm@10.33.4",
"scripts": {
"help": "node scripts/help.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:json": "vitest run --reporter=json --outputFile=report.json || true",
"lint": "eslint \"src/**/*.ts\" --no-error-on-unmatched-pattern \"tests/**/*.ts\" && pnpm run format:check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "vite build",
"clean": "rm -rf node_modules dist coverage .pnpm-store",
"install:frozen": "pnpm install --frozen-lockfile",
"update-lock": "pnpm install --lockfile-only",
"version": "node scripts/build-tools.js version",
"info": "node scripts/build-tools.js info",
"publish:dry-run": "pnpm publish --dry-run",
"prepublishOnly": "pnpm run build",
"tags": "npm dist-tag ls @agent-ix/ix-cli-core --registry https://npm.pkg.github.com || echo '(package not found or registry unavailable)'",
"pkg:add": "pnpm add",
"pkg:add-dev": "pnpm add -D",
"pkg:update": "pnpm update",
"pkg:update-latest": "pnpm dlx @agent-ix/js-deps update-latest",
"pkg:use-local": "pnpm dlx @agent-ix/js-deps use-local",
"pkg:use-upstream": "pnpm dlx @agent-ix/js-deps use-upstream",
"pkg:refresh-local": "pnpm dlx @agent-ix/js-deps refresh-local"
},
"dependencies": {
"@agent-ix/ix-ui-cli": ">=0.4.10",
"@agent-ix/ts-plugin-kit": ">=0.1.3",
"@clack/prompts": ">=1.5.1",
"@napi-rs/keyring": ">=1.3.0",
"age-encryption": ">=0.3.0",
"react": ">=19.2.7",
"yaml": ">=2.9.0",
"zod": ">=4.4.3"
},
"peerDependencies": {
"@oclif/core": ">=4.11.4"
},
"devDependencies": {
"@oclif/core": ">=4.11.4",
"@types/node": ">=25.9.2",
"@types/react": ">=19.2.17",
"@typescript-eslint/eslint-plugin": ">=8.60.1",
"@typescript-eslint/parser": ">=8.60.1",
"@vitest/coverage-v8": ">=4.1.8",
"eslint": ">=10.4.1",
"eslint-plugin-prettier": ">=5.5.6",
"prettier": ">=3.8.3",
"typescript": ">=6.0.3",
"vite": ">=8.0.16",
"vite-plugin-dts": ">=5.0.2",
"vitest": ">=4.1.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agent-ix/ix-cli-core.git"
}
}