-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "@benrbray/prosemirror-math",
"version": "1.0.0",
"private": false,
"author": "Benjamin R. Bray",
"license": "MIT",
"description": "Schema and plugins for first-class math support in ProseMirror.",
"repository": "github:benrbray/prosemirror-math",
"type": "module",
"exports": {
".": "./dist/prosemirror-math.js",
"./dist/*.css": "./dist/*.css"
},
"types": "dist/prosemirror-math.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"build:check": "tsc --project tsconfig.build.json",
"build:lib": "vite --config vite.config.lib.ts build",
"build:site": "npm run build:check && vite build",
"build": "npm run build:Check && npm run build:lib",
"dev": "vite",
"preview": "vite preview",
"prepare": "npm run build:lib"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/node": "^20.12.7",
"prosemirror-gapcursor": "^1.3.2",
"typescript": "^5.4.5",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.8.1",
"vite-tsconfig-paths": "^4.3.2"
},
"peerDependencies": {
"katex": "^0.16.10",
"prosemirror-commands": "^1.5.2",
"prosemirror-history": "^1.4.0",
"prosemirror-inputrules": "^1.4.0",
"prosemirror-keymap": "^1.2.2",
"prosemirror-model": "^1.20.0",
"prosemirror-state": "^1.4.3",
"prosemirror-transform": "^1.8.0",
"prosemirror-view": "^1.33.4"
}
}