-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.97 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.97 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
98
99
100
101
102
103
104
105
{
"name": "root",
"version": "5.10.0-alpha.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:warp-drive-data/warp-drive.git"
},
"scripts": {
"takeoff": "FORCE_COLOR=2 pnpm install --prefer-offline --reporter=append-only",
"prepare": "turbo run build:pkg --log-order=stream --concurrency=$(./bin/calculate-jobs);",
"release": "./tools/release/index.ts",
"build": "turbo run build:pkg --log-order=stream --concurrency=$(./bin/calculate-jobs);",
"sync": "pnpm --filter './packages/*' --filter './warp-drive-packages/*' --filter './tests/*' --filter './specs' run --parallel --if-present sync",
"start": "turbo run start --filter=./packages/* --concurrency=23",
"start:specs": "turbo run start --filter=./specs",
"sync:specs": "pnpm --filter './specs' run sync",
"sync:core": "pnpm --filter @warp-drive/build-config run sync",
"preview": "cd docs-viewer && pnpm start",
"lint:tests": "turbo --log-order=stream lint --filter=./tests/* --continue --concurrency=$(./bin/calculate-jobs)",
"lint:pkg": "turbo --log-order=stream lint --filter=./packages/* --continue --concurrency=$(./bin/calculate-jobs)",
"lint": "turbo --log-order=stream lint --continue --concurrency=$(./bin/calculate-jobs)",
"lint:fix": "turbo --log-order=stream lint --continue --concurrency=$(./bin/calculate-jobs) -- --fix",
"lint:oxfmt": "oxfmt --check .",
"lint:oxfmt:fix": "oxfmt --write .",
"lint:oxlint": "bash tools/internal-config/oxlint/run.sh",
"lint:oxlint:fix": "bash tools/internal-config/oxlint/run.sh --fix",
"lint:prettier": "prettier --check --cache --cache-location=.prettier-cache --log-level=warn '**/*.{gjs,gts}'",
"lint:prettier:fix": "prettier --write --cache --cache-location=.prettier-cache --log-level=warn '**/*.{gjs,gts}'",
"preinstall": "npx only-allow pnpm",
"check:types": "turbo --log-order=stream check:types --continue --concurrency=$(./bin/calculate-jobs)",
"test": "pnpm turbo test --concurrency=1 --log-order=stream",
"test:production": "pnpm turbo test:production --concurrency=1 --log-order=stream",
"test:blueprints": "pnpm run -r --workspace-concurrency=-1 --if-present test:blueprints"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@glimmer/component": "^2.1.1",
"@glint/ember-tsc": "^1.11.2",
"@glint/template": "^1.8.1",
"@warp-drive/internal-docs-viewer": "workspace:*",
"@warp-drive/internal-tooling": "workspace:*",
"badge-maker": "6.0.0",
"bun-types": "^1.4.0",
"comment-json": "^5.0.0",
"debug": "^4.4.3",
"ember-source": "catalog:",
"execa": "^10.0.1",
"git-repo-version": "^1.0.2",
"lerna-changelog": "^2.2.0",
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"oxlint-tsgolint": "^7.0.2001",
"prettier": "^3.9.6",
"prettier-plugin-ember-template-tag": "^2.1.8",
"semver": "^7.8.5",
"silent-error": "^1.1.1",
"typedoc": "^0.28.20",
"typescript": "^6.0.3"
},
"dependencies": {
"turbo": "^2.10.12"
},
"engines": {
"node": ">= 26.8.1",
"yarn": "use pnpm",
"npm": "use pnpm",
"pnpm": "12.1.0"
},
"packageManager": "pnpm@12.1.0",
"devEngines": {
"runtime": [
{
"name": "node",
"version": "26.8.1"
},
{
"name": "bun",
"version": "1.4.0"
}
]
},
"changelog": {
"cacheDir": ".changelog-cache",
"labels": {
":label: breaking": ":boom: Breaking Change",
":label: feat": ":rocket: Enhancement",
":label: bug": ":bug: Bug Fix",
":label: perf:": ":zap: Performance",
":label: cleanup": ":shower: Deprecation Removal",
":label: deprecation": ":evergreen_tree: New Deprecation",
":label: doc": ":memo: Documentation",
":label: test": ":goal_net: Test",
":label: chore": ":house: Internal"
},
"ignoreCommitters": [
"[bot]",
"dependabot-bot",
"greenkeeperio-bot",
"renovate-bot",
"Copilot"
]
}
}