-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.61 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": "primitives.org.ai",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.11.0",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"build:packages": "turbo build --concurrency=25",
"start": "next start",
"lint": "turbo lint --concurrency=25",
"test": "turbo test --concurrency=25",
"clean": "turbo clean --concurrency=25",
"postbuild": "mkdir -p public/_pagefind && [ -d .next/server/app ] && pagefind --site .next/server/app --output-path public/_pagefind || echo 'Skipping pagefind: .next/server/app directory not found'",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx}\"",
"version": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"@theguild/remark-mermaid": "^0.3.0",
"@vercel/analytics": "^1.5.0",
"ai-providers": "workspace:*",
"date-fns": "3.6.0",
"next": "15.3.1",
"nextra": "^4.2.17",
"nextra-theme-docs": "^4.2.17",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"pagefind": "^1.3.0",
"prettier": "^3.5.3",
"tailwindcss": "^4",
"turbo": "^2.5.3",
"typescript": "^5"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "es5",
"printWidth": 160,
"tabWidth": 2
},
"resolutions": {
"date-fns": "3.6.0"
}
}