-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 920 Bytes
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
{
"name": "awp",
"version": "0.10.0",
"private": true,
"type": "module",
"description": "Agent Workspace Protocol — coordination infrastructure for the agent economy",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"lint:root": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "turbo typecheck"
},
"packageManager": "npm@11.4.2",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"turbo": "^2.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}