-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.85 KB
/
package.json
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
68
69
70
71
{
"name": "myst-ext-curvenote-web",
"version": "1.0.1",
"description": "Awesome Website Components for MyST Markdown by Curvenote",
"type": "module",
"exports": {
".": {
"default": "./dist/curvenote-web.mjs",
"types": "./dist/curvenote-web.d.ts"
},
"./react": {
"default": "./dist/react/index.js",
"types": "./dist/react/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "npm run build",
"build:plugin": "tsup",
"build:react": "tsc --project tsconfig.react.json",
"build": "npm run build:plugin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myst-ext/myst-ext-curvenote-web.git"
},
"keywords": [
"website",
"hero",
"footer",
"myst markdown",
"markdown"
],
"author": "Steve Purves <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/myst-ext/myst-ext-curvenote-web/issues"
},
"homepage": "https://github.com/myst-ext/myst-ext-curvenote-web#readme",
"devDependencies": {
"@curvenote/common": "^0.1.41",
"@curvenote/footers": "^0.1.41",
"@jupyterlab/nbformat": "^4.2.3",
"@lumino/coreutils": "^2.2.0",
"@myst-theme/providers": "^0.9.8",
"@myst-theme/site": "^0.9.8",
"@scienceicons/react": "^0.0.11",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"lodash.throttle": "^4.1.1",
"lucide-react": "^0.400.0",
"myst-common": "^1.4.7",
"myst-spec-ext": "^1.4.7",
"myst-to-react": "^0.9.8",
"p-limit": "^5.0.0",
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0",
"tailwind-merge": "^2.3.0",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"unist-builder": "^4.0.0"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
}
}