-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.62 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
{
"name": "myst-ext-discourse",
"version": "1.0.3",
"description": "Discourse topic listings in MyST Markdown by Curvenote",
"type": "module",
"exports": {
".": {
"discourse": "./dist/discourse.mjs",
"types": "./dist/discourse.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 && npm run build:react"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myst-ext/myst-ext-discourse.git"
},
"keywords": [
"discourse",
"myst markdown",
"markdown",
"design",
"writing"
],
"author": "Steve Purves <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/myst-ext/myst-ext-discourse/issues"
},
"homepage": "https://github.com/myst-ext/myst-ext-discourse#readme",
"devDependencies": {
"@jupyterlab/nbformat": "^4.2.3",
"@lumino/coreutils": "^2.2.0",
"@myst-theme/providers": "^0.9.8",
"@scienceicons/react": "^0.0.11",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"lucide-react": "^0.400.0",
"myst-common": "^1.4.7",
"p-limit": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"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"
}
}