-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 924 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 924 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
{
"name": "expect",
"private": true,
"type": "module",
"license": "FSL-1.1-MIT",
"scripts": {
"everything": "pnpm run build && pnpm run lint && pnpm run typecheck && pnpm run format && pnpm run check && pnpm run test",
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"lint:fix": "turbo lint -- --fix",
"typecheck": "turbo run typecheck",
"format": "turbo format",
"format:check": "turbo format -- --check",
"check": "turbo check",
"test": "turbo test",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@typescript/native-preview": "7.0.0-dev.20260319.1",
"@voidzero-dev/vite-plus-core": "^0.1.12",
"turbo": "^2.8.17",
"typescript": "^5.7.0",
"vite-plus": "^0.1.12"
},
"packageManager": "pnpm@10.29.1"
}