forked from vercel-labs/wterm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 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
37
38
39
40
{
"name": "wterm",
"private": true,
"license": "Apache-2.0",
"homepage": "https://wterm.dev",
"repository": {
"type": "git",
"url": "https://github.com/vercel-labs/wterm"
},
"scripts": {
"build": "turbo run build",
"predev": "command -v portless >/dev/null 2>&1 || (echo '\\nportless is required but not installed. Run: npm i -g portless\\nSee: https://github.com/vercel-labs/portless\\n' && exit 1)",
"dev": "turbo run dev --concurrency 50",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx}\" --ignore-path .gitignore",
"lint": "turbo run lint",
"publish-packages": "pnpm build && pnpm --filter './packages/@wterm/*' publish --no-git-checks",
"sync-versions": "node scripts/sync-versions.mjs",
"test": "turbo run test",
"type-check": "turbo run type-check"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.4",
"prettier": "^3.8.2",
"turbo": "^2.9.6",
"vitest": "^4.1.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"cpu-features",
"esbuild",
"node-pty",
"ssh2"
],
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"packageManager": "[email protected]"
}