-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.11 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
{
"name": "@ai-plugins-cc/monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Monorepo for ai-plugins-cc: shared core, provider plugins (gemini, grok), codex adapter to upstream, and ai umbrella plugin.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dysfunc/ai-plugins-cc.git"
},
"homepage": "https://github.com/dysfunc/ai-plugins-cc#readme",
"bugs": "https://github.com/dysfunc/ai-plugins-cc/issues",
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"packages/*",
"plugins/*"
],
"scripts": {
"test": "npm test --workspaces --if-present",
"lint": "echo 'lint not configured yet'",
"build:plugins": "node scripts/build-plugins.mjs",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"core:check-changeset": "node scripts/check-core-changeset.mjs",
"codex:canary": "node scripts/codex-canary.mjs"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/node": "^22.0.0",
"esbuild": "^0.28.0"
}
}