-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.11 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
{
"name": "monorepo",
"version": "0.0.1",
"private": true,
"homepage": "https://github.com/agentcommercekit/ack#readme",
"bugs": "https://github.com/agentcommercekit/ack/issues",
"license": "MIT",
"author": {
"name": "Catena Labs",
"url": "https://catenalabs.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentcommercekit/ack.git"
},
"type": "module",
"scripts": {
"build": "turbo build",
"check": "turbo build && turbo check",
"check:format": "oxfmt --check .",
"check:packages": "pnpm dlx @manypkg/cli check",
"clean": "turbo clean && git clean -xdf .turbo node_modules/.cache",
"demo:e2e": "pnpm --filter ./demos/e2e run demo",
"demo:identity": "pnpm --filter ./demos/identity run demo",
"demo:identity-a2a": "pnpm --filter ./demos/identity-a2a run demo",
"demo:payments": "pnpm --filter ./demos/payments run demo",
"demo:skyfire-kya": "pnpm --filter ./demos/skyfire-kya run demo",
"dev:docs": "pnpm --filter ./docs run docs",
"dev:examples": "turbo dev",
"fix": "turbo build && turbo fix",
"format": "oxfmt --write .",
"knip": "knip",
"lint": "oxlint",
"lint:fix": "pnpm run lint -- --fix --fix-suggestions",
"nuke": "pnpm run clean && git clean -xdf demos/**/node_modules docs/**/node_modules examples/**/node_modules packages/**/node_modules tools/**/node_modules node_modules",
"outdated": "pnpm dlx npm-check-updates --interactive --format group --workspaces",
"publish:packages": "turbo build && changeset publish",
"release": "./bin/release",
"setup": "./bin/setup",
"test": "turbo test --env-mode=loose"
},
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.0",
"@types/node": "25.9.4",
"dotenv-cli": "11.0.0",
"knip": "6.18.0",
"oxfmt": "0.56.0",
"oxlint": "1.71.0",
"oxlint-tsgolint": "0.23.0",
"tsdown": "0.22.3",
"tsx": "4.22.4",
"turbo": "2.9.18",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"engines": {
"node": ">=22.13.0",
"pnpm": ">=11"
},
"packageManager": "pnpm@11.8.0"
}