forked from ocavue/astrobook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.68 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
{
"name": "astrobook-monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.12.1",
"description": "Astrobook monorepo",
"license": "MIT",
"scripts": {
"dev": "turbo --filter example-playground dev",
"postinstall": "pnpm --filter=./packages/ui build",
"build": "turbo run build",
"build:package": "turbo build --filter='./packages/*' --concurrency=1",
"lint": "eslint .",
"fix": "manypkg fix && eslint --fix . && prettier --write .",
"prepublishOnly": "pnpm run build",
"test": "vitest",
"test:install": "playwright install --with-deps",
"test:e2e": "playwright test",
"typecheck": "tsc --build .",
"change": "changeset",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "pnpm run build:package && pnpm publish --access public -r --no-git-checks --tag latest",
"ci:publish-dev": "pnpm run build:package && pkg-pr-new publish './packages/*' --template ./examples/playground --pnpm"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@changesets/types": "^6.1.0",
"@manypkg/cli": "^0.24.0",
"@ocavue/eslint-config": "^3.1.2",
"@playwright/test": "^1.53.0",
"@types/node": "^22.15.29",
"eslint": "^9.28.0",
"pkg-pr-new": "^0.0.51",
"playwright": "^1.53.0",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.12",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.3"
},
"renovate": {
"extends": [
"github>ocavue/config-renovate"
]
},
"pnpm": {
"overrides": {
"astrobook@*": "workspace:*"
}
}
}