-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
184 lines (184 loc) · 4.67 KB
/
package.json
File metadata and controls
184 lines (184 loc) · 4.67 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"private": true,
"name": "@starbeam-workspace/root",
"type": "module",
"version": "1.0.0",
"license": "MIT",
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
"./package.json": "./package.json"
},
"publishConfig": {
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts"
},
"starbeam": {
"type": "root",
"used": [
{
"packages": [
"eslint-config-airbnb"
],
"reason": "vscode eslint pulled in depcheck's .eslintrc.yml"
},
{
"packages": [
"@types/eslint"
],
"reason": "eslint"
},
{
"packages": [
"@babel/plugin-proposal-decorators",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-transform-runtime",
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
],
"reason": "babel"
},
{
"packages": [
"vitest",
"@vitest/ui",
"happy-dom",
"jsdom"
],
"reason": "vitest and dependencies it uses directly are in the root package so that vitest can identify its own test suites when the entire suite is run at once"
},
{
"packages": [
"@changesets/cli"
],
"reason": ".changeset/config.json"
},
{
"packages": [
"esno"
],
"reason": "package.json scripts"
},
{
"packages": [
"typescript",
"tslib",
"@babel/runtime"
],
"reason": "build packages"
},
{
"packages": [
"vite"
],
"reason": "tsconfig.shared.json"
}
]
},
"scripts": {
"build": "turbo build",
"ci:prod": "STARBEAM_TEST_PROD=1 vitest --pool forks --run",
"ci:specs": "vitest --pool forks --run",
"lint:fix": "pnpm --filter '*' test:lint --fix",
"prepack": "pnpm run build",
"sort-deps": "node workspace/scripts/sort-package-json-deps.mjs",
"test:workspace:lint": "turbo run lint --output-logs errors-only --log-prefix none",
"test:workspace:prod": "STARBEAM_TEST_PROD=1 vitest --pool forks --run",
"test:workspace:specs": "vitest --pool forks --run",
"test:workspace:types": "turbo run typecheck --output-logs errors-only --log-prefix none",
"vitest": "vitest --pool forks"
},
"dependencies": {
"@starbeam/core-utils": "workspace:^"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@esbuild-kit/esm-loader": "^2.6.5",
"@starbeam-dev/compile": "workspace:*",
"@starbeam-dev/core": "^1.0.2",
"@starbeam-workspace/eslint-preset": "workspace:*",
"@types/node": "^25.6.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/ui": "^4.1.4",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^10.2.1",
"fast-glob": "^3.3.3",
"happy-dom": "^20.9.0",
"jsdom": "^26.1.0",
"knip": "^6.4.1",
"lefthook": "^2.1.6",
"node-gyp": "^12.2.0",
"prettier": "^3.8.3",
"react-compiler-runtime": "1.0.0",
"release-plan": "^0.18.0",
"tstyche": "^7.0.0",
"turbo": "^2.9.6",
"typescript": "^6.0.3",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"nodemonConfig": {
"watch": [
"package.json",
"pnpm-workspace.yaml",
"scripts"
]
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"notes": {
"onlyBuiltDependencies": {
"reason": "pnpm 10 blocks postinstall/prepare lifecycle scripts by default. Only packages listed here are allowed to run them."
},
"overrides": {
"rollup": "postcss plugin brings in an old version of rollup, so we need to override it here, otherwise type checking fails"
}
},
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"lefthook",
"unrs-resolver"
],
"overrides": {
"@rollup/pluginutils": "latest",
"@starbeam-dev/compile": "workspace:*",
"@types/node": "$@types/node",
"eslint": "$eslint",
"preact": "10.29.1",
"terser": "^5.31.0",
"typescript": "$typescript",
"vite": "$vite",
"vue": "3.5.32"
},
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom",
"vue"
],
"allowedVersions": {
"eslint": "^10.2.1",
"typescript": "*",
"vitest": "^4.1.4"
}
}
},
"prettier": {},
"repository": {
"type": "git",
"url": "git@github.com:starbeamjs/starbeam.git"
},
"volta": {
"node": "22.22.2",
"pnpm": "10.33.0"
}
}