-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
190 lines (190 loc) · 5.05 KB
/
package.json
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
185
186
187
188
189
190
{
"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",
"check:unused": "esyes ./workspace/scripts/index.ts unused",
"ci:lint": "esyes ./workspace/scripts/index.ts ci --type lint -v",
"ci:prod": "vitest --pool forks --run --mode production",
"ci:specs": "vitest --pool forks --run",
"ci:types": "esyes ./workspace/scripts/index.ts ci --type types -v",
"demo": "esyes ./workspace/scripts/index.ts demo",
"dev": "esyes ./workspace/scripts/index.ts",
"lint:fix": "pnpm --filter '*' test:lint --fix",
"prepack": "pnpm run build",
"release": "esyes ./workspace/scripts/index.ts release",
"test:workspace:lint": "turbo run lint --output-logs errors-only --log-prefix none",
"test:workspace:prod": "PROD=1 DEV= vitest --pool forks --run",
"test:workspace:specs": "vitest --pool forks --run",
"test:workspace:types": "tsc -b",
"vitest": "vitest --pool forks"
},
"dependencies": {
"@starbeam/core-utils": "workspace:^"
},
"devDependencies": {
"@edge-runtime/vm": "^3.1.7",
"@esbuild-kit/esm-loader": "^2.6.5",
"@nrr/pnpm-duplicate-cli": "^0.0.1",
"@starbeam-dev/compile": "workspace:*",
"@starbeam-dev/core": "^1.0.2",
"@starbeam-dev/eslint-plugin": "^1.0.6",
"@types/eslint": "^8.56.0",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/ui": "^1.1.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsonc": "^2.11.2",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"esyes": "^1.0.2",
"fast-glob": "^3.3.2",
"happy-dom": "^12.10.3",
"jsdom": "^23.0.1",
"knip": "^3.8.4",
"node-gyp": "^10.0.1",
"prettier": "^3.1.1",
"release-plan": "^0.6.0",
"tstyche": "1.0.0-beta.6",
"turbo": "^1.11.2",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.0"
},
"nodemonConfig": {
"watch": [
"package.json",
"pnpm-workspace.yaml",
"scripts"
]
},
"pnpm": {
"notes": {
"overrides": {
"rollup": "postcss plugin brings in an old version of rollup, so we need to override it here, otherwise type checking fails"
}
},
"overrides": {
"@rollup/pluginutils": "latest",
"@starbeam-dev/compile": "workspace:*",
"@types/eslint": "$@types/eslint",
"@types/node": "$@types/node",
"eslint": "$eslint",
"preact": "10.17.1",
"typescript": "$typescript",
"vite": "$vite",
"vue": "3.3.4",
"terser": "^5.31.0"
},
"peerDependencyRules": {
"allowAny": [
"react",
"react-dom",
"vue"
],
"allowedVersions": {
"@typescript-eslint/eslint-plugin": "*",
"typescript": "*",
"vitest": "1.0.0-beta.1"
}
}
},
"prettier": {},
"repository": {
"type": "git",
"url": "git@github.com:starbeamjs/starbeam.git"
},
"volta": {
"node": "20.8.0",
"pnpm": "8.10.5"
}
}