-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 973 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 973 Bytes
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
{
"name": "luno-kit",
"description": "The Luno monorepo containing core, react, and other related packages.",
"private": true,
"scripts": {
"build": "pnpm -r --stream --filter './packages/**' run build",
"clean": "pnpm --filter './packages/**' run clean",
"dev": "pnpm --filter './packages/**' dev",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"changeset": "changeset",
"publish": "pnpm clean && pnpm build && changeset publish",
"lint": "biome check ./packages",
"lint:fix": "biome check --write ./packages",
"format": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@changesets/cli": "^2.29.2",
"@vitest/coverage-v8": "3.2.4",
"eslint": "^8.56.0",
"react": "^18.2.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
}
}