-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.17 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.17 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "tempad-dev",
"private": true,
"description": "TemPad Dev monorepo",
"type": "module",
"scripts": {
"dev": "pnpm --filter @tempad-dev/extension dev",
"dev:site": "pnpm --filter @tempad-dev/site dev",
"build": "pnpm -r build",
"build:site": "pnpm --filter @tempad-dev/site build",
"build:ext": "pnpm --filter @tempad-dev/extension build",
"build:plugins": "pnpm --filter @tempad-dev/plugins build",
"build:mcp": "pnpm --filter @tempad-dev/mcp build",
"test": "pnpm -r --parallel --if-present test",
"test:run": "pnpm -r --if-present test:run",
"test:coverage": "vitest run --coverage",
"lint": "pnpm lint:root && pnpm -r --if-present lint",
"lint:fix": "pnpm lint:root:fix && pnpm -r --if-present lint:fix",
"lint:root": "eslint . --ignore-pattern \"packages/**\"",
"lint:root:fix": "eslint . --fix --ignore-pattern \"packages/**\"",
"format": "pnpm format:root && pnpm -r --if-present format",
"format:check": "pnpm format:root:check && pnpm -r --if-present format:check",
"format:root": "oxfmt --ignore-path ./.gitignore --ignore-path ./.oxfmtignore",
"format:root:check": "oxfmt --ignore-path ./.gitignore --ignore-path ./.oxfmtignore --check",
"typecheck": "pnpm typecheck:root && pnpm -r --if-present typecheck",
"typecheck:root": "tsc -p tsconfig.configs.json",
"zip": "pnpm --filter @tempad-dev/extension zip",
"prepare": "lefthook install"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@types/node": "^24.11.0",
"@vitest/coverage-istanbul": "4.1.2",
"@vue/eslint-config-typescript": "^14.7.0",
"eslint": "^10.0.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-plugin-perfectionist": "^5.0.0",
"eslint-plugin-vue": "^10.5.1",
"jiti": "^2.6.1",
"lefthook": "^2.0.0",
"oxfmt": "^0.42.0",
"typescript": "^6.0.0",
"vitest": "4.1.2"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook",
"playwright-chromium",
"spawn-sync"
],
"overrides": {
"@rollup/plugin-terser>serialize-javascript": "7.0.5",
"esbuild": "0.27.4",
"vite": "8.0.5"
}
}
}