This repository was archived by the owner on Mar 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.22 KB
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
{
"name": "prosemirror-suggestcat-plugin-react",
"version": "2.2.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"rebuild": "rollup -c",
"dev": "rollup -c -w --bundleConfigAsCjs",
"format": "eslint src --ext .ts --fix",
"prepublishOnly": "pnpm run build && pnpm run lint",
"version": "pnpm run format && git add -A src",
"postversion": "git push && git push --tags",
"lint": "tsc --noEmit && eslint src --ext .ts",
"test": "exit 0",
"upgrade-interactive": "npm-check --update",
"publish:np": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emergence-engineering/prosemirror-suggestcat-plugin-react.git"
},
"files": [
"dist/**/*"
],
"author": "Emergence Engineering",
"license": "MIT",
"bugs": {
"url": "https://github.com/emergence-engineering/prosemirror-suggestcat-plugin-react/issues"
},
"homepage": "https://github.com/emergence-engineering/prosemirror-suggestcat-plugin-react#readme",
"dependencies": {
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.26.0",
"next": "^13.4.10",
"prosemirror-slash-menu": "workspace:*",
"prosemirror-slash-menu-react": "workspace:*",
"prosemirror-state": "^1.4.3",
"prosemirror-suggestcat-plugin": "workspace:*",
"prosemirror-view": "^1.31.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-popper": "^2.3.0",
"rollup-plugin-copy": "^3.4.0",
"rimraf": "^6.0.1",
"rollup-plugin-import-css": "^3.3.1"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@types/react": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"np": "^8.0.4",
"prettier": "^3.0.0",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.35.0",
"typescript": "^5.1.6"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
}
}