@prosekit/web 0.0.0

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,116 @@
1
+ {
2
+ "name": "@prosekit/web",
3
+ "type": "module",
4
+ "version": "0.0.0",
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/core": "^0.0.12",
69
+ "@aria-ui/listbox": "^0.0.10",
70
+ "@aria-ui/overlay": "^0.0.12",
71
+ "@aria-ui/popover": "^0.0.11",
72
+ "@aria-ui/presence": "^0.0.7",
73
+ "@aria-ui/tooltip": "^0.0.13",
74
+ "@floating-ui/dom": "^1.6.3",
75
+ "@prosekit/core": "^0.4.0",
76
+ "@prosekit/extensions": "^0.4.2",
77
+ "@prosekit/pm": "^0.1.2",
78
+ "@zag-js/dom-query": "^0.47.0"
79
+ },
80
+ "devDependencies": {
81
+ "@prosekit/dev": "*",
82
+ "tsup": "^8.0.2",
83
+ "typescript": "^5.4.5",
84
+ "vitest": "^1.5.0"
85
+ },
86
+ "scripts": {
87
+ "build:tsup": "tsup",
88
+ "build:tsc": "tsc -b tsconfig.json"
89
+ },
90
+ "types": "./dist/prosekit-web.d.ts",
91
+ "typesVersions": {
92
+ "*": {
93
+ ".": [
94
+ "./dist/prosekit-web.d.ts"
95
+ ],
96
+ "autocomplete": [
97
+ "./dist/prosekit-web-autocomplete.d.ts"
98
+ ],
99
+ "block-handle": [
100
+ "./dist/prosekit-web-block-handle.d.ts"
101
+ ],
102
+ "inline-popover": [
103
+ "./dist/prosekit-web-inline-popover.d.ts"
104
+ ],
105
+ "popover": [
106
+ "./dist/prosekit-web-popover.d.ts"
107
+ ],
108
+ "resizable": [
109
+ "./dist/prosekit-web-resizable.d.ts"
110
+ ],
111
+ "tooltip": [
112
+ "./dist/prosekit-web-tooltip.d.ts"
113
+ ]
114
+ }
115
+ }
116
+ }