-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.66 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "prosemirror-remark",
"version": "0.6.1",
"description": "ProseMirror Remark integration",
"keywords": [
"prosemirror",
"remark",
"mdast"
],
"homepage": "https://github.com/marekdedic/prosemirror-remark#readme",
"bugs": {
"url": "https://github.com/marekdedic/prosemirror-remark/issues"
},
"license": "MIT",
"author": "Marek Dědič",
"repository": {
"type": "git",
"url": "git+https://github.com/marekdedic/prosemirror-remark.git"
},
"main": "dist/prosemirror-remark.cjs",
"module": "dist/prosemirror-remark.js",
"types": "dist/prosemirror-remark.d.ts",
"sideEffects": false,
"files": [
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"scripts": {
"clean": "rimraf dist/* types/*",
"prebuild": "npm run clean",
"build:webpack": "webpack",
"build:api-extractor": "api-extractor run",
"build": "npm run build:webpack && npm run build:api-extractor",
"lint": "eslint --color 'src/**/*.ts' '__tests__/**/*.ts' '*.config.{js,ts}'",
"test": "jest"
},
"dependencies": {
"@types/mdast": "^4.0.1",
"@types/unist": "^3.0.0",
"mdast-util-gfm-autolink-literal": "^2.0.0",
"mdast-util-gfm-strikethrough": "^2.0.0",
"mdast-util-gfm-task-list-item": "^2.0.0",
"micromark-extension-gfm-autolink-literal": "^2.0.0",
"micromark-extension-gfm-strikethrough": "^2.0.0",
"micromark-extension-gfm-task-list-item": "^2.0.1",
"prosemirror-commands": "^1.5.1",
"prosemirror-inputrules": "^1.2.0",
"prosemirror-schema-list": "^1.2.2",
"prosemirror-unified": "=0.8.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.4"
},
"peerDependencies": {
"prosemirror-model": "^1.19.3",
"prosemirror-state": "^1.4.3"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.0",
"@eslint/js": "^9.9.1",
"@microsoft/api-extractor": "^7.34.9",
"@types/jest": "^29.5.2",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.7.0",
"eslint-plugin-perfectionist": "^4.0.3",
"eslint-plugin-prefer-arrow-functions": "^3.4.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.0",
"jest-prosemirror": "^3.0.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-markdown": "^2.1.0",
"micromark-util-types": "^2.0.0",
"prettier": "^3.0.0",
"prosemirror-view": "^1.30.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.5.4 <5.6",
"typescript-eslint": "^8.3.0",
"webpack": "^5.80.0",
"webpack-cli": "^6.0.1"
}
}