-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "agentcha-workspace",
"version": "0.1.0",
"description": "Agent-aware verification gate with a Web Component widget and server-side verifier.",
"private": true,
"license": "BUSL-1.1",
"type": "module",
"keywords": [
"agent-verification",
"captcha",
"web-component",
"bot-auth",
"astro"
],
"homepage": "https://github.com/1337Xcode/Agentcha#readme",
"bugs": {
"url": "https://github.com/1337Xcode/Agentcha/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1337Xcode/Agentcha.git"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"dev": "npm run dev -w @agentcha/demo"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/node": "^11.0.2",
"@playwright/test": "^1.55.0",
"astro": "^7.0.6",
"typescript": "^5.8.3",
"vite": "^7.0.4",
"vitest": "^3.2.4"
}
}