-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.73 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
63
64
65
66
67
{
"name": "mdx",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test --env-mode=loose",
"test:all": "vitest run",
"test:coverage": "turbo run test:coverage --env-mode=loose",
"test:doc": "tsx test-literate.js",
"check-types": "turbo run check-types",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md}\"",
"generate:schema": "tsx scripts/generate-schema-mdx.ts",
"version": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@dotenvx/dotenvx": "^1.44.1",
"@types/ink": "^2.0.3",
"@types/node": "^22.15.21",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"dotenv": "^16.5.0",
"globby": "^14.1.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"remark-mdx": "^3.1.0",
"remark-parse": "^11.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"turbo": "^2.5.3",
"typescript": "^5.8.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vitest": "^3.1.4"
},
"packageManager": "pnpm@9.15.1",
"engines": {
"node": ">=18"
},
"prettier": {
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 160,
"tabWidth": 2,
"semi": false
},
"dependencies": {
"@mdxdb/core": "workspace:^",
"@mdxdb/fs": "workspace:^",
"@mdxdb/sqlite": "workspace:^",
"@types/micromatch": "^4.0.6",
"ink-ascii": "^0.0.4",
"ink-big-text": "^1.2.0",
"ink-markdown": "^1.0.4",
"micromatch": "^4.0.5"
},
"workspaces": [
"packages/*",
"packages/@*/*",
"config/*",
"examples/*"
]
}