-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 2.1 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
{
"name": "@automerge/prosemirror",
"version": "0.0.13",
"license": "MIT",
"scripts": {
"prettier": "prettier '**/*.{js,ts,tsx,json}' --check",
"build": "tsc -p ./tsconfig/tsconfig.build.json",
"lint": "eslint .",
"cypress:open": "cypress open",
"playground": "vite dev playground",
"playground:build": "vite build playground",
"playground:preview": "vite preview playground",
"mocha": "node --experimental-specifier-resolution=node --experimental-loader=ts-node/esm ./node_modules/.bin/mocha ./test/**/*.spec.ts"
},
"type": "module",
"main": "dist/index.js",
"files": [
"dist/*"
],
"dependencies": {
"@automerge/automerge": "^2.2.3",
"ordered-map": "^0.1.0",
"prosemirror-changeset": "^2.2.1",
"prosemirror-history": "^1.4.1",
"prosemirror-model": "^1.19.4",
"prosemirror-schema-basic": "^1.2.2",
"prosemirror-schema-list": "^1.3.0",
"prosemirror-state": "^1.4.3",
"prosemirror-transform": "^1.7.3",
"prosemirror-view": "^1.33.1"
},
"devDependencies": {
"@automerge/automerge-repo": "^2.0.0-alpha.13",
"@automerge/automerge-repo-network-messagechannel": "^1.1.5",
"@eslint/js": "^9.11.1",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.10",
"@types/react": "^18.2.13",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@vitejs/plugin-react": "^4.0.0",
"chai": "^5.0.3",
"cypress": "^13.6.3",
"debug": "^4.3.4",
"eslint": "^8.43.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"fast-check": "^3.17.1",
"ist": "^1.1.7",
"lucide-react": "^0.344.0",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"prosemirror-commands": "^1.5.2",
"prosemirror-example-setup": "^1.2.2",
"prosemirror-inputrules": "^1.4.0",
"prosemirror-keymap": "^1.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-top-level-await": "^1.3.1",
"vite-plugin-wasm": "^3.2.2"
}
}