-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 760 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 760 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
{
"version": "3.0.0",
"private": true,
"license": "MIT",
"packageManager": "[email protected]",
"workspaces": [
"examples/**",
"packages/**"
],
"scripts": {
"dev": "turbo run dev",
"prebuild": "pnpm i && pnpm format && pnpm lint",
"build": "pnpm prebuild && turbo run build",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"release": "pnpm build && changeset && changeset version && changeset publish",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@nw/eslint-config": "workspace:*",
"eslint": "latest",
"jsdom": "^22.1.0",
"prettier": "latest",
"turbo": "latest",
"vitest": "^0.34.4"
}
}