-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.91 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.91 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
{
"name": "@pythonluvr/squire",
"version": "1.3.0",
"description": "General-purpose runtime for spawning CLI AI agents (Claude Code, Codex, Gemini CLI) as subprocesses with structured event streaming, MCP tool forwarding, and permission auto-setup.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./adapters": {
"types": "./dist/adapters/index.d.ts",
"import": "./dist/adapters/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"docs"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "node -e \"import('node:fs').then(f=>f.rmSync('dist',{recursive:true,force:true}))\"",
"prepublishOnly": "npm run clean && npm run build",
"test": "node scripts/run-tests.mjs",
"test:coverage": "node scripts/check-coverage.mjs",
"lint:em-dashes": "node scripts/check-em-dashes.mjs",
"lint:sanity": "node scripts/check-sanity.mjs",
"lint:no-openwar": "node scripts/check-no-openwar-imports.mjs",
"lint": "npm run lint:em-dashes && npm run lint:sanity && npm run lint:no-openwar",
"check": "npm run lint && npm run build && npm run test",
"check:strict": "npm run lint && npm run build && npm run test:coverage"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^20.14.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0"
},
"keywords": [
"claude-code",
"codex",
"gemini-cli",
"cli",
"subprocess",
"mcp",
"typescript",
"ai-agents",
"agent-runtime",
"anthropic",
"openai",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pythonluvr/squire.git"
},
"homepage": "https://github.com/pythonluvr/squire#readme",
"bugs": {
"url": "https://github.com/pythonluvr/squire/issues"
}
}