-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/withastro/compiler.git"
},
"scripts": {
"build": "make wasm",
"build:compiler": "pnpm --filter @astrojs/compiler run build",
"build:all": "pnpm run build && pnpm run build:compiler",
"check": "biome check",
"ci": "biome ci --diagnostic-level=warn",
"check:write": "biome check --write",
"prerelease": "pnpm run build:compiler",
"release": "changeset publish",
"test": "tsx node_modules/uvu/bin.js packages test -i utils -i stress",
"test:only": "tsx node_modules/uvu/bin.js packages",
"test:stress": "tsx packages/compiler/test/stress/index.ts",
"test:ci": "pnpm run test && pnpm run test:stress"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.25.0",
"sass": "^1.55.0",
"tsx": "^4.16.2",
"typescript": "~5.5.3",
"uvu": "^0.5.6",
"@biomejs/biome": "1.8.1"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}