-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.39 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.39 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
69
70
71
{
"name": "agents",
"version": "0.0.1",
"description": "Agentic capabilities for the data-fair stack. Manage AI providers and configure agents using tools that integrate with other data-fair services.",
"type": "module",
"scripts": {
"test": "playwright test --project=unit --max-failures=1 && playwright test --project=api --max-failures=1 && playwright test --project=e2e --max-failures=1",
"lint": "eslint . && npm -w ui run lint",
"lint-fix": "eslint --fix . && npm -w ui run lint-fix",
"dev-api": "npm -w api run dev",
"dev-ui": "npm -w ui run dev",
"dev-deps": "mkdir -p dev/logs && docker compose up 2>&1 | tee dev/logs/docker-compose.log",
"dev-zellij": "dotenv -- zellij --layout .zellij.kdl",
"build-types": "mkdir -p ui/src/components/vjsf && df-build-types . --vjsf-dir ui/src/components/vjsf",
"prepare": "husky || true",
"check-types": "tsc && npm -w ui run check-types",
"quality": "npm run lint && npm run build-types && npm run check-types && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/data-fair/agents.git"
},
"workspaces": [
"ui",
"api",
"shared",
"lib-vue",
"lib-vuetify"
],
"author": "",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/data-fair/agents/issues"
},
"homepage": "https://github.com/data-fair/agents#readme",
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@data-fair/lib-express": "^1.19.0",
"@data-fair/lib-node": "^2.8.1",
"@koumoul/vjsf-compiler": "^1.2.3",
"@playwright/test": "^1.58.2",
"@reporters/bail": "^1.2.1",
"@types/config": "^3.3.5",
"@types/express": "^5.0.6",
"@types/memoizee": "^0.4.12",
"@types/node": "^22.12.0",
"@types/ws": "^8.18.1",
"commitlint": "^19.2.2",
"dotenv": "^17.3.1",
"dotenv-cli": "^11.0.0",
"eslint": "^9.10.0",
"eslint-plugin-vue": "^10.5.0",
"eslint-plugin-vuetify": "^2.5.1",
"husky": "^9.1.6",
"neostandard": "^0.12.2",
"nock": "^14.0.11",
"nodemon": "^3.1.14",
"typescript": "~5.6.3"
},
"dependencies": {
"@data-fair/lib-types-builder": "^1.8.3",
"@types/debug": "^4.1.12",
"ajv": "^8.17.1",
"tough-cookie": "^5.1.2",
"ufo": "^1.6.3"
},
"relativeDependencies": {
"@data-fair/lib-vuetify": "../lib/packages/vuetify",
"@data-fair/lib-vue": "../lib/packages/vue"
}
}