-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.33 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
{
"name": "otaip",
"version": "0.7.4",
"private": true,
"description": "Open Travel AI Platform — domain-specific AI agent orchestration for the travel industry",
"homepage": "https://telivity.app",
"repository": {
"type": "git",
"url": "git+https://github.com/telivity-otaip/otaip.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=24.14.1"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"build": "pnpm -r run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint 'packages/*/src/**/*.ts' 'packages/agents/*/src/**/*.ts' 'packages/adapters/*/src/**/*.ts'",
"lint:fix": "eslint 'packages/*/src/**/*.ts' 'packages/agents/*/src/**/*.ts' 'packages/adapters/*/src/**/*.ts' --fix",
"format": "prettier --write 'packages/*/src/**/*.ts' 'packages/agents/*/src/**/*.ts' 'packages/adapters/*/src/**/*.ts'",
"format:check": "prettier --check 'packages/*/src/**/*.ts' 'packages/agents/*/src/**/*.ts' 'packages/adapters/*/src/**/*.ts'",
"typecheck": "pnpm -r run typecheck",
"data:download": "tsx scripts/download-airport-data.ts",
"count:agents": "tsx scripts/count-agents.ts",
"gen:manifest": "tsx scripts/generate-manifest.ts",
"gen:agent-map": "tsx scripts/generate-agent-map-html.ts",
"verify:dist": "tsx scripts/verify-dist.ts",
"verify": "pnpm -r run build && pnpm verify:dist",
"ligare": "pnpm --filter @otaip/example-ligare demo",
"check:no-internal-refs": "bash scripts/check-no-internal-refs.sh",
"clean": "pnpm -r run clean && rm -rf node_modules"
},
"pnpm": {
"onlyBuiltDependencies": [],
"overrides": {
"hono": ">=4.12.25",
"ip-address": ">=10.3.1",
"fast-uri": ">=4.1.2",
"vite": "^8.0.16",
"esbuild": ">=0.28.1",
"qs": ">=6.15.2",
"postcss": ">=8.5.18",
"brace-expansion": ">=5.0.9",
"find-my-way": ">=9.7.0",
"@fastify/static": ">=10.1.1",
"@hono/node-server": ">=2.0.5",
"body-parser": ">=2.3.0",
"react-router": ">=8.3.0"
}
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^6.4.2",
"vitest": "^4.1.9"
}
}