-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.55 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
{
"author": "Anthony Chaussin chaussin.anthony@gmail.com",
"name": "notebook-viewer-ts",
"license": "MIT",
"description": "HTML viewer for Jupyter .ipynb files with Markdown rendering, code, outputs and folding.",
"repository": {
"type": "git",
"url": "git+https://github.com/anthonychaussin/NotebookTs.git"
},
"homepage": "https://github.com/anthonychaussin/NotebookTs/blob/master/README.md",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build:lib": "tsc",
"build:cdn": "vite build --config vite.config.cdn.ts",
"build": "npm run build:lib && npm run build:cdn",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage"
},
"files": [
"dist",
"cdn",
"README.md",
"demo/notebook.css"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"ansi-to-html": "^0.7.2",
"highlight.js": "^11.11.1",
"katex": "^0.16.25",
"micromark": "^4.0.2",
"micromark-extension-gfm": "^3.0.0",
"micromark-extension-math": "^3.1.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@types/node": "^25.0.2",
"jsdom": "^28.0.0",
"typescript": "^5.8.3",
"vite": "^7.0.4",
"vitest": "^4.0.8"
},
"keywords": [
"jupyter",
"ipynb",
"notebook",
"viewer",
"typescript",
"parser",
"markdown",
"highlight"
]
}