-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.83 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
62
{
"name": "create-markdown-monorepo",
"private": true,
"version": "0.0.0",
"description": "Monorepo for @create-markdown packages",
"author": "Val Alexander <val@viewdue.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BunsDev/create-markdown"
},
"homepage": "https://github.com/BunsDev/create-markdown",
"bugs": {
"url": "https://github.com/BunsDev/create-markdown/issues"
},
"workspaces": [
"packages/*",
"playground"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"playground": "turbo run build --filter=@create-markdown/core --filter=@create-markdown/react && cd playground && pnpm dev",
"docs": "turbo run build --filter=@create-markdown/core --filter=@create-markdown/mdx && cd packages/docs && pnpm dev",
"docs:build": "turbo run build --filter=@create-markdown/docs",
"docs:convert": "pnpm tsx packages/docs/scripts/convert.ts",
"changeset": "changeset",
"version-packages": "changeset version",
"security-audit": "bash scripts/security-audit.sh",
"release": "bash scripts/release.sh",
"release:ci": "turbo run build && changeset publish",
"prepare": "turbo run build"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@testing-library/react": "^16.3.2",
"jsdom": "^29.0.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"turbo": "^2.9.4",
"typescript": "^6.0.2",
"vite": "7.1.11",
"vitest": "^4.1.2"
},
"pnpm": {
"overrides": {
"lodash-es": "4.18.1"
},
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"packageManager": "pnpm@10.11.1",
"engines": {
"node": ">=20.0.0"
}
}