-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "@prosemirror-adapter/monorepo",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm -r run build",
"commit": "git-cz",
"ex": "pnpm --filter=e2e start",
"test": "pnpm run build && pnpm --filter=e2e test",
"test:install": "pnpm --filter=e2e test:install",
"changeset": "changeset",
"lint": "eslint .",
"fix": "eslint . --fix",
"release": "changeset publish",
"prepare": "husky"
},
"dependencies": {
"@antfu/eslint-config": "^3.13.0",
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@type-config/strict": "^1.2.1",
"@types/rollup-plugin-auto-external": "^2.0.5",
"concurrently": "^9.1.2",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"git-cz": "^4.9.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"pkg-pr-new": "^0.0.39",
"prosemirror-keymap": "^1.2.2",
"prosemirror-model": "^1.24.1",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.37.1",
"tslib": "^2.8.1",
"typescript": "~5.7.2",
"vite": "^5.4.11"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"vite",
"rollup"
]
}
}
}