-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.94 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.94 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
{
"name": "templatical",
"dependencies": {
"@vueuse/core": "^14.2.1",
"liquidjs": "^10.25.7",
"vue": "^3.5.33",
"vue-advanced-cropper": "^2.8.9"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@playwright/mcp": "^0.0.75",
"@playwright/test": "^1.60.0",
"@tailwindcss/vite": "^4.2.4",
"@templatical/editor": "workspace:*",
"@tiptap/extension-color": "^3.22.4",
"@tiptap/extension-font-family": "^3.22.4",
"@tiptap/extension-text-style": "^3.22.4",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/coverage-v8": "^4.1.5",
"@vue/reactivity": "^3.5.33",
"eslint": "^10.2.1",
"eslint-plugin-vue": "^10.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"syncpack": "^14.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.10",
"vue-eslint-parser": "^10.4.0"
},
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@11.1.2+sha512.415a1cc25974731e75455c1468371be74c5aa5fb7621b50d4056d222451609f11412f23fd602e6169f1e060466641f798597e1be961a10688836a67b16569499",
"private": true,
"scripts": {
"build": "pnpm --filter '@templatical/media-library' run build:all && pnpm --filter '@templatical/types' run build && pnpm --filter '@templatical/core' --filter '@templatical/renderer' --filter '@templatical/quality' --filter '@templatical/import-beefree' --filter '@templatical/import-unlayer' --filter '@templatical/import-html' run build && pnpm --filter '@templatical/editor' run build:all",
"build:all-sdk": "pnpm run build:email-editor && pnpm run build:media-library",
"build:email-editor": "pnpm --filter '@templatical/editor' run build:cdn",
"build:media-library": "pnpm --filter '@templatical/media-library' run build:cdn",
"ci": "pnpm run format && pnpm run lint && pnpm run typecheck && pnpm run test",
"deps:check": "syncpack lint && syncpack format --check",
"deps:fix": "syncpack fix && syncpack format",
"deps:update": "syncpack update",
"format": "prettier --write 'packages/*/src/**/*.{ts,vue}' 'apps/*/src/**/*.{ts,vue}'",
"format:check": "prettier --check 'packages/*/src/**/*.{ts,vue}' 'apps/*/src/**/*.{ts,vue}'",
"lint": "eslint packages/*/src apps/*/src --cache --cache-location node_modules/.cache/eslint/",
"prepare": "husky",
"test": "pnpm --filter './packages/*' run test",
"test:coverage": "pnpm --filter './packages/*' run test --coverage",
"test:e2e": "playwright test",
"test:e2e:consumer": "playwright test --config playwright.consumer.config.ts",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"test:turbopack-consumer": "node packages/editor/scripts/turbopack-consumer-verify.mjs",
"test:webpack-consumer": "node packages/editor/scripts/webpack-consumer-verify.mjs",
"typecheck": "pnpm --filter './packages/*' run typecheck && pnpm --filter '@templatical/playground' run typecheck"
}
}