-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.41 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
{
"name": "agent-profile-monorepo",
"version": "0.1.0",
"private": true,
"description": "Local-first AI Agent Profile Compiler for Tabnine, Codex, and Claude.",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"check": "npm run check --workspaces --if-present && node scripts/verify-package-metadata.mjs",
"test": "npm run test --workspaces --if-present && npm run test:release",
"test:release": "node --test \"scripts/release/*.test.mjs\"",
"lint": "npm run lint --workspaces --if-present",
"doctor": "npm run build --workspace @agent-profile/cli --if-present && node apps/cli/dist/index.js doctor",
"build:marketing": "npm run build:marketing --workspace @agent-profile/web",
"verify:pack": "node scripts/verify-pack-files.mjs",
"verify:baseline-age": "node scripts/check-baseline-age.mjs",
"version:set": "node scripts/sync-versions.mjs",
"version:sync": "node scripts/sync-versions.mjs",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@types/node": "^24.13.2",
"prettier": "^3.9.4",
"tsx": "^4.23.0",
"typescript": "^6.0.3"
},
"overrides": {
"svelte": "5.56.4",
"vite": "8.1.3",
"svelte-check": "4.7.1"
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
}
}