@prosekit/web 0.0.0-next-20240421132240

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,117 @@
1
+ {
2
+ "name": "@prosekit/web",
3
+ "type": "module",
4
+ "version": "0.0.0-next-20240421132240",
5
+ "private": false,
6
+ "author": {
7
+ "name": "ocavue",
8
+ "email": "ocavue@gmail.com"
9
+ },
10
+ "license": "MIT",
11
+ "funding": "https://github.com/sponsors/ocavue",
12
+ "homepage": "https://github.com/ocavue/prosekit#readme",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/ocavue/prosekit.git",
16
+ "directory": "packages/web"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/ocavue/prosekit/issues"
20
+ },
21
+ "keywords": [
22
+ "ProseMirror"
23
+ ],
24
+ "sideEffects": true,
25
+ "main": "./dist/prosekit-web.js",
26
+ "module": "./dist/prosekit-web.js",
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/prosekit-web.d.ts",
30
+ "import": "./dist/prosekit-web.js",
31
+ "default": "./dist/prosekit-web.js"
32
+ },
33
+ "./autocomplete": {
34
+ "types": "./dist/prosekit-web-autocomplete.d.ts",
35
+ "import": "./dist/prosekit-web-autocomplete.js",
36
+ "default": "./dist/prosekit-web-autocomplete.js"
37
+ },
38
+ "./block-handle": {
39
+ "types": "./dist/prosekit-web-block-handle.d.ts",
40
+ "import": "./dist/prosekit-web-block-handle.js",
41
+ "default": "./dist/prosekit-web-block-handle.js"
42
+ },
43
+ "./inline-popover": {
44
+ "types": "./dist/prosekit-web-inline-popover.d.ts",
45
+ "import": "./dist/prosekit-web-inline-popover.js",
46
+ "default": "./dist/prosekit-web-inline-popover.js"
47
+ },
48
+ "./popover": {
49
+ "types": "./dist/prosekit-web-popover.d.ts",
50
+ "import": "./dist/prosekit-web-popover.js",
51
+ "default": "./dist/prosekit-web-popover.js"
52
+ },
53
+ "./resizable": {
54
+ "types": "./dist/prosekit-web-resizable.d.ts",
55
+ "import": "./dist/prosekit-web-resizable.js",
56
+ "default": "./dist/prosekit-web-resizable.js"
57
+ },
58
+ "./tooltip": {
59
+ "types": "./dist/prosekit-web-tooltip.d.ts",
60
+ "import": "./dist/prosekit-web-tooltip.js",
61
+ "default": "./dist/prosekit-web-tooltip.js"
62
+ }
63
+ },
64
+ "files": [
65
+ "dist"
66
+ ],
67
+ "dependencies": {
68
+ "@aria-ui/collection": "^0.0.3",
69
+ "@aria-ui/core": "^0.0.12",
70
+ "@aria-ui/listbox": "^0.0.11",
71
+ "@aria-ui/overlay": "^0.0.12",
72
+ "@aria-ui/popover": "^0.0.11",
73
+ "@aria-ui/presence": "^0.0.7",
74
+ "@aria-ui/tooltip": "^0.0.13",
75
+ "@floating-ui/dom": "^1.6.3",
76
+ "@prosekit/core": "0.0.0-next-20240421132240",
77
+ "@prosekit/extensions": "0.0.0-next-20240421132240",
78
+ "@prosekit/pm": "0.0.0-next-20240421132240",
79
+ "@zag-js/dom-query": "^0.47.0"
80
+ },
81
+ "devDependencies": {
82
+ "@prosekit/dev": "*",
83
+ "tsup": "^8.0.2",
84
+ "typescript": "^5.4.5",
85
+ "vitest": "^1.5.0"
86
+ },
87
+ "scripts": {
88
+ "build:tsup": "tsup",
89
+ "build:tsc": "tsc -b tsconfig.json"
90
+ },
91
+ "types": "./dist/prosekit-web.d.ts",
92
+ "typesVersions": {
93
+ "*": {
94
+ ".": [
95
+ "./dist/prosekit-web.d.ts"
96
+ ],
97
+ "autocomplete": [
98
+ "./dist/prosekit-web-autocomplete.d.ts"
99
+ ],
100
+ "block-handle": [
101
+ "./dist/prosekit-web-block-handle.d.ts"
102
+ ],
103
+ "inline-popover": [
104
+ "./dist/prosekit-web-inline-popover.d.ts"
105
+ ],
106
+ "popover": [
107
+ "./dist/prosekit-web-popover.d.ts"
108
+ ],
109
+ "resizable": [
110
+ "./dist/prosekit-web-resizable.d.ts"
111
+ ],
112
+ "tooltip": [
113
+ "./dist/prosekit-web-tooltip.d.ts"
114
+ ]
115
+ }
116
+ }
117
+ }