-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.53 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": "pm2html",
"version": "0.1.12",
"description": "ProseMirror to HTML",
"main": "dist/index.cjs",
"module": "dist/index.js",
"umd": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"build": "npm run clean && rollup -c",
"pub": "npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mailbean/pm2html.git"
},
"keywords": [
"prosemirror",
"html",
"json",
"tiptap"
],
"author": "Philipp Viereck",
"license": "MIT",
"bugs": {
"url": "https://github.com/mailbean/pm2html/issues"
},
"homepage": "https://github.com/mailbean/pm2html#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/node": "^18.18.6",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"rollup": "^2.79.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.2.2"
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"zeed-dom": "^0.10.9"
},
"peerDependencies": {
"prosemirror-model": "^1.18.1"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
}
}