-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.71 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.71 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
{
"name": "@directus/visual-editing",
"version": "2.0.0",
"description": "Visual editing library to enable in-place editing of your website’s frontend from within the Visual Editor in Directus",
"homepage": "https://directus.io/docs/guides/content/visual-editor",
"repository": {
"type": "git",
"url": "https://github.com/directus/visual-editing.git"
},
"funding": "https://github.com/directus/directus?sponsor=1",
"license": "MIT",
"keywords": [
"visual-editing",
"visual-editor",
"content-editing-experience",
"in-place-editing",
"in-place-editor",
"frontend-editing",
"frontend-editor",
"content-editing",
"content-editor",
"live-editing",
"live-editor",
"directus",
"in-place",
"frontend",
"overlays",
"preview",
"editing",
"editor",
"iframe",
"cms"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/visual-editing.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "NODE_ENV=development tsdown",
"build": "NODE_ENV=production tsdown",
"test": "vitest --typecheck --watch=false"
},
"dependencies": {
"@reach/observe-rect": "1.2.0"
},
"devDependencies": {
"@directus/tsconfig": "3.0.0",
"@eslint/js": "9.39.2",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-vue": "10.7.0",
"globals": "17.3.0",
"prettier": "3.8.1",
"tsdown": "0.20.1",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0",
"vitest": "4.0.18",
"vue-eslint-parser": "10.2.0"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.8.1",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}