forked from tinacms/tinacms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.14 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
{
"name": "root",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/@tinacms/*",
"examples/*/*",
"packages/[^@]*"
],
"engines": {
"node": "22.x || 24.x",
"npm": "11.x",
"pnpm": ">=11"
},
"scripts": {
"dev": "pnpm watch",
"watch": "pnpm run build && pnpm --filter=\"./packages/@tinacms/scripts\" run watch",
"build": "turbo run build --filter=\"./packages/**\"",
"diff-tina-lock": "pnpm -r --filter='{./**}' --workspace-concurrency=1 run --if-present diff-tina-lock",
"update-tina-lock": "pnpm -r --filter='{./**}' --workspace-concurrency=1 run --if-present update-tina-lock",
"test": "turbo run test --filter=\"./packages/**\"",
"lint:packages": "pnpm --filter './packages/**' --no-bail exec pnpm dlx publint --strict",
"test:packages": "vitest run --reporter=verbose && pnpm run lint:packages",
"types": "turbo run types --filter=\"./packages/**\"",
"test:dev": "cd playwright/tina-playwright && npx playwright test --ui",
"test:e2e": "cd playwright/tina-playwright && npx playwright test",
"version": "pnpm exec changeset version",
"version:snapshot": "pnpm exec changeset version --snapshot",
"publish": "pnpm publish -r --no-git-checks --access public && pnpm exec changeset tag",
"publish:beta": "pnpm publish -r --tag beta --no-git-checks --access public",
"publish:dev": "pnpm publish -r --tag dev --no-git-checks --access public",
"push-tags": "pnpm exec changeset tag && git pull && git push --follow-tags",
"lint": "biome lint ./packages ./examples",
"format": "biome format --write ./packages/ ./examples/",
"coverage": "turbo run coverage --filter=\"./packages/v4/**\""
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.17",
"@types/react": "18.3.27",
"@types/react-dom": "18.3.7",
"vitest": "^2.1.9",
"@types/picomatch": "catalog:",
"picomatch": "catalog:",
"turbo": "catalog:",
"typescript": "^5.7.3",
"vite": "^4.5.14"
},
"packageManager": "pnpm@11.7.0",
"dependencies": {
"highlight.js": "catalog:",
"react-colorful": "catalog:"
}
}