-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.22 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@voiden/sdk",
"version": "1.1.1",
"description": "SDK for building Voiden extensions",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/VoidenHQ/sdk.git"
},
"homepage": "https://github.com/VoidenHQ/sdk#readme",
"bugs": {
"url": "https://github.com/VoidenHQ/sdk/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./ui": {
"types": "./dist/ui/index.d.ts",
"import": "./dist/ui/index.js",
"require": "./dist/ui/index.js"
},
"./electron": {
"types": "./dist/electron/index.d.ts",
"import": "./dist/electron/index.js",
"require": "./dist/electron/index.js"
},
"./shared": {
"types": "./dist/shared/index.d.ts",
"import": "./dist/shared/index.js",
"require": "./dist/shared/index.js"
},
"./runner": {
"types": "./dist/runner/index.d.ts",
"import": "./dist/runner/index.js",
"require": "./dist/runner/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"jsonc-parser": "^3.2.0"
},
"peerDependencies": {
"@tiptap/core": "^2.8.0",
"@tiptap/pm": "^2.8.0",
"@tiptap/react": "^2.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@tiptap/core": "^2.27.1",
"@tiptap/pm": "^2.27.1",
"@tiptap/react": "^2.27.1",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@vitest/ui": "^4.0.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
},
"keywords": [
"voiden",
"extension",
"sdk",
"tiptap",
"editor"
],
"author": "Voiden",
"license": "MIT"
}