-
Notifications
You must be signed in to change notification settings - Fork 99
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.14 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.14 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",
"check:types": "turbo check:types",
"clean": "turbo clean && git clean -xdf .turbo node_modules/.cache",
"demo:e2e": "pnpm --filter ./demos/e2e demo",
"demo:identity": "pnpm --filter ./demos/identity demo",
"demo:identity-a2a": "pnpm --filter ./demos/identity-a2a demo",
"demo:payments": "pnpm --filter ./demos/payments demo",
"demo:skyfire-kya": "pnpm --filter ./demos/skyfire-kya demo",
"dev:docs": "pnpm --filter ./docs docs",
"dev:examples": "turbo dev",
"fix": "turbo build && turbo fix",
"format": "oxfmt --write .",
"lint": "oxlint --type-aware",
"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.5.2",
"@changesets/cli": "2.29.8",
"@repo/typescript-config": "workspace:*",
"@types/node": "24.9.2",
"dotenv-cli": "11.0.0",
"oxfmt": "0.35.0",
"oxlint": "1.50.0",
"oxlint-tsgolint": "0.14.2",
"tsdown": "0.15.11",
"tsx": "4.21.0",
"turbo": "2.8.10",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.20.0"
}