-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.9 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
{
"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.12.4",
"@vitest/coverage-istanbul": "4.1.8",
"@vue/eslint-config-typescript": "^14.7.0",
"eslint": "^10.4.1",
"eslint-config-flat-gitignore": "^2.3.0",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-vue": "^10.9.1",
"jiti": "^2.7.0",
"lefthook": "^2.1.9",
"oxfmt": "^0.53.0",
"typescript": "^6.0.3",
"vitest": "4.1.8"
},
"packageManager": "pnpm@11.5.1"
}