-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
81 lines (81 loc) · 1.97 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
{
"name": "prosemirror-virtual-cursor",
"type": "module",
"version": "0.4.2",
"packageManager": "[email protected]",
"description": "",
"author": "ocavue <[email protected]>",
"license": "MIT",
"funding": "https://github.com/sponsors/ocavue",
"homepage": "https://github.com/ocavue/prosemirror-virtual-cursor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ocavue/prosemirror-virtual-cursor.git"
},
"bugs": "https://github.com/ocavue/prosemirror-virtual-cursor/issues",
"keywords": [],
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./style/virtual-cursor.css": "./style/virtual-cursor.css"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"style",
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint .",
"fix": "eslint --fix . && prettier --write .",
"prepublishOnly": "nr build",
"build:all": "nr build && nr --filter playground build",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"prosemirror-model": "^1.0.0",
"prosemirror-state": "^1.0.0",
"prosemirror-view": "^1.0.0"
},
"peerDependenciesMeta": {
"prosemirror-model": {
"optional": true
},
"prosemirror-state": {
"optional": true
},
"prosemirror-view": {
"optional": true
}
},
"devDependencies": {
"@antfu/ni": "^0.22.0",
"@ocavue/eslint-config": "^1.11.2",
"@types/node": "^20.14.13",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"prosemirror-model": "^1.22.2",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.33.9",
"tsup": "^7.2.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^1.6.0"
}
}