-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.93 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.93 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
{
"name": "agentstack-sdk",
"private": true,
"workspaces": [
"packages/core",
"packages/react",
"packages/hooks"
],
"scripts": {
"build": "npm run build -w @agentstack/sdk && npm run build -w @agentstack/react && npm run build -w @agentstack/hooks",
"test": "npm run test -w @agentstack/sdk",
"check:economy-parity": "npm run check:economy-parity -w @agentstack/sdk",
"check:finance-parity": "npm run check:finance-parity -w @agentstack/sdk",
"check:commerce-marketplace-parity": "npm run check:commerce-marketplace-parity -w @agentstack/sdk",
"check:commerce-shop-parity": "npm run check:commerce-shop-parity -w @agentstack/sdk",
"lint": "npm run lint -w @agentstack/sdk",
"clean": "npm run clean -w @agentstack/sdk",
"check:docs-urls": "npm run check:docs-urls -w @agentstack/sdk",
"check:package-exports": "npm run check:package-exports -w @agentstack/sdk",
"check:docs-api-symbols": "npm run check:docs-api-symbols -w @agentstack/sdk",
"test:sdk-submodule": "node tests/sdk-submodule-lock.test.mjs",
"generate:docs-i18n": "node scripts/generate-docs-i18n-manifest.mjs",
"check:docs-i18n": "node scripts/check-docs-i18n-parity.mjs",
"check:docs-i18n-depth": "node scripts/check-docs-i18n-depth.mjs",
"check:docs-i18n:all": "npm run generate:docs-i18n && npm run check:docs-i18n && npm run check:docs-i18n-depth && npm run check:docs-urls && npm run check:docs-api-symbols",
"mirror:readme": "node scripts/mirror-readme-for-github.mjs",
"submodule:add": "node scripts/submodule-add-sdk.mjs",
"submodule:link": "node scripts/link-sdk-deps.mjs",
"submodule:doctor": "node scripts/doctor-sdk-submodule.mjs",
"submodule:bootstrap": "node scripts/bootstrap-submodule-consumer.mjs"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"overrides": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"tslib": "^2.8.0"
}
}