-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 4.12 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 4.12 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "layers-monorepo",
"private": true,
"description": "Monorepo for @stainless-code/layers — a headless layer/stack manager with a UI-agnostic core and opt-in adapters.",
"homepage": "https://stainless-code.com/layers",
"bugs": {
"url": "https://github.com/stainless-code/layers/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stainless-code/layers.git"
},
"funding": "https://github.com/sponsors/SutuSebastian",
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"build": "bun run build:core && bun run --filter '@stainless-code/*-layers' build && bun run --filter '@stainless-code/*-devtools' build",
"build:core": "bun run --filter '@stainless-code/layers' build",
"changeset": "changeset",
"check": "bun run build && bun run --parallel format:check lint:ci test test:dom typecheck",
"check-updates": "bun update -i --latest",
"check:deps": "sherif --fail-on-warnings",
"check:links": "lychee --config lychee.toml \"**/*.md\"",
"check:pack": "bun run --filter '*' check:pack",
"clean": "git clean -xdf -e .env",
"docs:api": "bun apps/docs/scripts/rewrite-api-links.ts --clean && typedoc && bun apps/docs/scripts/rewrite-api-links.ts",
"docs:audit": "bun run --filter '@stainless-code/layers-docs' audit",
"docs:build": "bun run --filter '@stainless-code/layers-docs' build",
"docs:check": "bun run --filter '@stainless-code/layers-docs' check",
"docs:dev": "bun run --filter '@stainless-code/layers-docs' dev",
"docs:preview": "bun run --filter '@stainless-code/layers-docs' preview",
"docs:validate": "bun run --filter '@stainless-code/layers-docs' validate",
"fix": "bun run lint:fix && bun run format",
"fix:changes": "bun run lint:fix:changes && bun run format:changes",
"format": "oxfmt --no-error-on-unmatched-pattern",
"format:changes": "bun scripts/run-on-changed-files.ts format",
"format:check": "oxfmt --check --no-error-on-unmatched-pattern",
"intent:stale": "intent stale",
"intent:validate": "intent validate",
"lint": "oxlint --no-error-on-unmatched-pattern",
"lint-staged": "lint-staged",
"lint:changes": "bun scripts/run-on-changed-files.ts lint",
"lint:ci": "oxlint --quiet",
"lint:fix": "bun run lint --fix",
"lint:fix:changes": "bun scripts/run-on-changed-files.ts lint:fix",
"playground:build": "bun run --filter '@stainless-code/layers-devtools-playground' build",
"playground:dev": "bun run --filter '@stainless-code/layers-devtools-playground' dev",
"playground:preview": "bun run --filter '@stainless-code/layers-devtools-playground' preview",
"prepare": "husky || true",
"release": "bun scripts/release.ts",
"size": "size-limit",
"test": "bun run --filter '*' test",
"test:coverage": "bun run --filter '*' test:coverage",
"test:dom": "bun run --filter '*' test:dom",
"test:types": "bun run --filter '*' typecheck",
"typecheck": "bun run --filter '*' typecheck",
"upgrade-packages:evidence": "bun run scripts/upgrade-packages/evidence.ts",
"version": "changeset version && rm -f bun.lock && bun install && bun scripts/sync-skill-versions.ts && bun run format \"packages/*/CHANGELOG.md\""
},
"devDependencies": {
"@arethetypeswrong/cli": "0.18.5",
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.1",
"@size-limit/preset-small-lib": "12.1.0",
"@stainless-code/codemap": "0.11.2",
"@tanstack/intent": "0.3.6",
"@types/bun": "1.3.14",
"@types/node": "26.1.1",
"husky": "9.1.7",
"knip": "6.27.0",
"lint-staged": "17.0.8",
"oxfmt": "0.59.0",
"oxlint": "1.74.0",
"publint": "0.3.21",
"sherif": "1.13.0",
"size-limit": "12.1.0",
"tsdown": "0.22.9",
"typedoc": "0.28.20",
"typedoc-plugin-frontmatter": "1.3.1",
"typedoc-plugin-markdown": "4.12.0",
"typescript": "6.0.3"
},
"overrides": {
"brace-expansion": "5.0.8",
"path-to-regexp": "6.3.0",
"yuku-parser": "0.6.5"
},
"engines": {
"bun": ">=1.0.0",
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "bun@1.3.14"
}