-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.07 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.07 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
{
"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://github.com/stainless-code/layers#readme",
"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": [
"packages/*"
],
"type": "module",
"scripts": {
"build": "bun run build:core && bun run --filter '@stainless-code/*-layers' 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",
"check:links": "lychee --config lychee.toml \"**/*.md\"",
"check:pack": "bun run --filter '*' check:pack",
"clean": "git clean -xdf -e .env",
"docs:api": "typedoc",
"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",
"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": {
"@angular/core": "22.0.5",
"@arethetypeswrong/cli": "0.18.4",
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.0",
"@size-limit/preset-small-lib": "12.1.0",
"@stainless-code/codemap": "0.11.2",
"@tanstack/intent": "0.3.5",
"@types/bun": "1.3.14",
"@types/node": "26.1.1",
"husky": "9.1.7",
"knip": "6.24.0",
"lint-staged": "17.0.8",
"oxfmt": "0.58.0",
"oxlint": "1.73.0",
"publint": "0.3.21",
"sherif": "1.6.1",
"size-limit": "12.1.0",
"tsdown": "0.22.3",
"typedoc": "0.28.19",
"typescript": "6.0.3"
},
"engines": {
"bun": ">=1.0.0",
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "bun@1.3.14"
}