-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.4 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
{
"name": "@a1st/aix-monorepo",
"version": "0.0.12",
"private": true,
"keywords": [
"ai",
"ai-agent",
"ai-configuration",
"mcp",
"model-context-protocol"
],
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"prepack": "npm run build",
"build": "npm run build -w @a1st/aix-schema -w @a1st/aix-core -w @a1st/mcp-registry-client -w @a1st/aix -w @a1st/aix-site",
"build:lib": "npm run build -w @a1st/aix-schema -w @a1st/aix-core -w @a1st/mcp-registry-client -w @a1st/aix",
"test": "npm run test -ws --if-present",
"standards": "npm run lint && npm run format:check && npm run typecheck",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "npm run lint:fix && oxfmt '**/*.{css,json,md,yml,yaml}'",
"format:check": "oxfmt --check '**/*.{css,json,md,yml,yaml}'",
"typecheck": "tsc --noEmit",
"version:bump": "node ./scripts/version-bump.mjs",
"qa:sandbox": "./scripts/qa-sandbox.sh",
"qa:clean": "./scripts/qa-sandbox.sh --clean"
},
"devDependencies": {
"@stylistic/eslint-plugin": "5.7.0",
"@types/node": "24.10.9",
"eslint": "9.39.2",
"oxfmt": "^0.32.0",
"oxlint": "1.40.0",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vitest": "4.0.17"
},
"engines": {
"node": ">=20.19.0 || >=22.12.0",
"npm": ">=10.0.0"
}
}