forked from withastro/compiler
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.5 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.5 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
{
"name": "root",
"version": "0.0.1",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/withastro/compiler-rs.git"
},
"scripts": {
"build:napi": "pnpm --filter ./crates/astro_napi run build-dev",
"build:compiler": "pnpm --filter @astrojs/compiler-rs run build",
"build:all": "pnpm run build:napi && pnpm run build:compiler",
"format": "pnpm run format:code && pnpm run format:imports",
"format:ci": "pnpm run format:code:ci && pnpm run format:imports:ci",
"format:code": "biome format --write && cargo fmt",
"format:code:ci": "biome format && cargo fmt",
"format:imports": "biome check --formatter-enabled=false --write",
"format:imports:ci": "biome ci --formatter-enabled=false",
"lint": "biome lint && cargo clippy",
"lint:ci": "biome ci --formatter-enabled=false --enforce-assist=false --reporter=github && cargo clippy",
"lint:fix": "biome lint --write --unsafe && cargo clippy --fix --allow-dirty --all-features",
"release": "changeset publish",
"test": "node --import tsx --test 'packages/compiler/test/**/*.ts'",
"test:ci": "pnpm run test"
},
"packageManager": "pnpm@10.29.3",
"workspaces": [
"packages/*",
"crates/astro_napi"
],
"devDependencies": {
"@biomejs/biome": "2.3.15",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"sass": "^1.97.3",
"tsx": "^4.21.0",
"typescript": "~5.9.3"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}