-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.24 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.24 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
60
61
{
"name": "tempad-dev",
"private": true,
"description": "TemPad Dev monorepo",
"type": "module",
"scripts": {
"dev": "pnpm --filter @tempad-dev/extension dev",
"build": "pnpm -r 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": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ext:node": "pnpm --filter @tempad-dev/extension test:node",
"test:ext:browser": "pnpm --filter @tempad-dev/extension test:browser",
"test:ext:setup": "pnpm --filter @tempad-dev/extension test:setup",
"lint": "pnpm lint:root && pnpm -r lint",
"lint:fix": "pnpm lint:root:fix && pnpm -r lint:fix",
"lint:root": "eslint . --ignore-pattern \"packages/**\"",
"lint:root:fix": "eslint . --fix --ignore-pattern \"packages/**\"",
"format": "pnpm format:root && pnpm -r format",
"format:check": "pnpm format:root:check && pnpm -r format:check",
"format:root": "oxfmt --ignore-path ./.gitignore --ignore-path ./.oxfmtignore",
"format:root:check": "oxfmt --ignore-path ./.gitignore --ignore-path ./.oxfmtignore --check",
"typecheck": "pnpm -r typecheck",
"zip": "pnpm --filter @tempad-dev/extension zip",
"npm:plugins": "pnpm --filter @tempad-dev/plugins publish --access public",
"npm:mcp": "pnpm --filter @tempad-dev/mcp publish --access public",
"prepare": "lefthook install"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@rushstack/eslint-patch": "^1.15.0",
"@vitest/coverage-istanbul": "4.0.18",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"eslint": "^10.0.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-plugin-perfectionist": "^5.0.0",
"eslint-plugin-vue": "^10.5.1",
"lefthook": "^2.0.0",
"oxfmt": "^0.34.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook",
"playwright-chromium",
"spawn-sync"
],
"overrides": {
"@hono/node-server": "1.19.11",
"hono": "4.12.5",
"vite": "8.0.0-beta.15"
}
}
}