forked from jsonnull/electron-trpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1003 Bytes
/
package.json
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
{
"license": "MIT",
"scripts": {
"build": "corepack pnpm -r build",
"test": "corepack pnpm -r test",
"test:e2e": "playwright test",
"test:ci": "corepack pnpm -r test:ci",
"lint": "prettier --check .",
"prepublishOnly": "corepack pnpm build",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile",
"release": "changeset publish",
"docs:start": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@playwright/test": "^1.35.1",
"prettier": "^2.8.8",
"typescript": "^5.1.3",
"unocss": "^0.53.1",
"vite": "^4.3.9",
"vitepress": "1.0.0-beta.5",
"vue": "^3.3.4"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"pnpm": {
"requiredScripts": [
"build"
]
}
}