-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 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
{
"name": "notebook-mdx",
"private": true,
"description": "Render Jupyter notebooks in MDX with authentic styling and syntax highlighting",
"keywords": [
"jupyter",
"notebook",
"mdx",
"react",
"documentation",
"typescript",
"syntax-highlighting",
"markdown",
"remark",
"rehype",
"jupyter-notebook",
"data-science",
"code-cells",
"interactive"
],
"homepage": "https://github.com/abhay-ramesh/notebook-mdx",
"repository": {
"type": "git",
"url": "https://github.com/abhay-ramesh/notebook-mdx.git"
},
"bugs": {
"url": "https://github.com/abhay-ramesh/notebook-mdx/issues"
},
"author": {
"name": "Abhay Ramesh",
"url": "https://github.com/abhay-ramesh"
},
"license": "MIT",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"format": "prettier --write \"**/*.{ts,tsx,md,json,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,yml,yaml}\"",
"docs:dev": "turbo run dev --filter=docs",
"docs:build": "turbo run build --filter=docs",
"package:build": "turbo run build --filter=notebook-mdx",
"package:test": "turbo run test --filter=notebook-mdx",
"demo": "pnpm docs:dev"
},
"devDependencies": {
"prettier": "^3.6.0",
"turbo": "^2.5.4",
"typescript": "5.8.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
}
}