-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.04 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.04 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": "arkenv-monorepo",
"type": "module",
"private": true,
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter=./packages/*",
"dev": "turbo run dev --ui tui",
"typecheck": "turbo run typecheck",
"typecheck:packages": "turbo run typecheck --filter=./packages/*",
"docs": "turbo run dev --filter=www",
"www": "turbo run dev --filter=www",
"release": "pnpm run build:packages && changeset publish",
"fix": "node scripts/fix.js",
"fix:unsafe": "node scripts/fix.js --unsafe",
"check": "biome check && pnpm run check:mdx && manypkg check",
"check:mdx": "mdxlint . -e md -e mdx --frail",
"fix:mdx": "mdxlint . -e md -e mdx --output",
"check:errors": "biome check --diagnostic-level=error",
"clean": "turbo run clean && rimraf dist node_modules",
"test": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "turbo run test:e2e",
"test:e2e:report": "turbo run test:e2e:report",
"test:e2e:ui": "turbo run test:e2e:ui",
"test:e2e:update": "turbo run test:e2e:update",
"changeset": "changeset",
"size": "turbo run size",
"sync:examples": "node scripts/sync-examples.js",
"sync:examples:check": "node scripts/sync-examples.js --check",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"knip": "knip",
"test:cli": "node scripts/test-cli.js",
"arkenv": "pnpm run build --filter @arkenv/cli && node packages/cli/dist/index.cjs"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@changesets/cli": "2.31.0",
"@clack/prompts": "^1.3.0",
"@manypkg/cli": "0.25.1",
"@playwright/test": "",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"all-contributors-cli": "^6.26.1",
"changesets-changelog-clean": "1.3.0",
"dpdm": "^4.2.0",
"esbuild": "catalog:",
"knip": "^6.12.2",
"mdxlint": "^1.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"rimraf": "catalog:",
"turbo": "2.9.14",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@11.2.2"
}