-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.02 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.02 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
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"packageManager": "bun@1.3.13",
"workspaces": {
"packages": [
"packages/*",
"packages/adapters/*"
]
},
"scripts": {
"dev": "exec bun packages/cli/src/index.ts",
"ui": "bun run --cwd packages/landing dev",
"ui:build": "bun run --cwd packages/landing build",
"types": "tsc --noEmit",
"check": "bun turbo check",
"test:scripts": "bun test scripts/",
"lint": "biome check .",
"format": "biome check --write --unsafe .",
"seed:cli": "bun scripts/release-cli/seed.ts",
"seed:adapters": "bun scripts/release/seed-adapters.ts",
"change": "changeset",
"ci:pack": "circleci config pack .circleci/development > .circleci/development.yml && circleci config pack .circleci/release > .circleci/release.yml",
"ci:check-pack": "diff <(circleci config pack .circleci/development) .circleci/development.yml && diff <(circleci config pack .circleci/release) .circleci/release.yml || (echo 'CircleCI configs are out of date. Run: bun run ci:pack' && exit 1)",
"docs": "bun --cwd docs mint dev",
"docs:validate": "bun --cwd docs mint validate",
"docs:broken-links": "bun --cwd docs mint broken-links",
"postinstall": "bun scripts/postinstall.ts",
"clean": "rm -rf .turbo .sst node_modules packages/**/node_modules packages/**/.turbo packages/**/dist packages/cli/bin/.facet test-results/*.xml tmp docs/.mintlify",
"nuke": "bun run clean && bun install && bun check"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.0",
"@changesets/release-utils": "0.2.7",
"@fission-ai/openspec": "1.3.1",
"@octokit/auth-app": "8.2.0",
"@types/bun": "1.3.13",
"@types/node": "24.12.3",
"dedent": "1.7.2",
"mint": "4.2.558",
"turbo": "2.9.12",
"typescript": "6.0.3",
"@types/aws-lambda": "8.10.161",
"type-fest": "5.6.0"
},
"dependencies": {
"sst": "4.13.1"
}
}