-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "directus-extension-editable-layout",
"version": "1.1.1",
"description": "A table layout that allows you to edit item fields directly inline.",
"license": "GPL-3.0",
"author": {
"name": "formfcw",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/formfcw/directus-extension-editable-layout"
},
"icon": "edit_square",
"keywords": [
"inline",
"inline-editing",
"editable",
"spreadsheet",
"editable-table-layout",
"alternative-table-layout",
"table-layout",
"directus",
"directus-extension",
"directus-extension-layout",
"directus-extension-editable-layout",
"directus-extension-spreadsheet-layout"
],
"type": "module",
"files": [
"dist"
],
"directus:extension": {
"host": "^10.0.0 || ^11.0.0",
"type": "layout",
"path": "dist/index.js",
"source": "src/index.ts"
},
"scripts": {
"build-publish": "directus-extension build && npm publish",
"build": "directus-extension build",
"dev": "directus-extension build -w --no-minify",
"link": "directus-extension link"
},
"devDependencies": {
"@directus/extensions-sdk": "^12.0.2",
"@types/lodash": "^4.17.1",
"@vueuse/core": "^11.1.0",
"lodash": "^4.17.21",
"sass": "^1.76.0",
"typescript": "^5.4.5",
"vue": "^3.4.26",
"vue-i18n": "^10.0.1",
"vue-router": "^4.3.2"
}
}