-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.18 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.18 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
{
"name": "liteforge-monorepo",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"typecheck:all": "pnpm -r typecheck",
"build:packages": "pnpm --filter './packages/*' build",
"build:apps": "pnpm --filter './examples/*' build",
"build": "pnpm build:packages && pnpm build:apps",
"dev": "pnpm --filter @liteforge/starter dev",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"clean": "pnpm -r exec rm -rf dist",
"clean:all": "pnpm clean && rm -rf node_modules",
"prepublish:check": "pnpm clean && pnpm build:packages && pnpm test:run && pnpm typecheck:all",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"release": "pnpm build:packages && pnpm test:run && pnpm changeset:publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@vitest/coverage-v8": "^2.1.8",
"happy-dom": "^15.11.7",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0"
}