directus-extension-super-table 0.2.8
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/LICENSE +21 -0
- package/README.md +377 -0
- package/index.js +9 -0
- package/package.json +86 -0
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "directus-extension-super-table",
|
|
3
|
+
"version": "0.2.8",
|
|
4
|
+
"description": "A powerful and feature-rich table layout extension for Directus 11+ with inline editing, quick filters, and manual sorting",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"directus",
|
|
7
|
+
"directus-extension",
|
|
8
|
+
"directus-layout",
|
|
9
|
+
"table",
|
|
10
|
+
"inline-editing",
|
|
11
|
+
"super-table"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/smartlabsAT/directus-super-table#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/smartlabsAT/directus-super-table/issues"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/smartlabsAT/directus-super-table.git"
|
|
20
|
+
},
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"author": "smartlabs AT",
|
|
23
|
+
"type": "module",
|
|
24
|
+
"files": [
|
|
25
|
+
"index.js",
|
|
26
|
+
"README.md",
|
|
27
|
+
"LICENSE"
|
|
28
|
+
],
|
|
29
|
+
"main": "index.js",
|
|
30
|
+
"directus:extension": {
|
|
31
|
+
"type": "layout",
|
|
32
|
+
"path": "index.js",
|
|
33
|
+
"source": "index.ts",
|
|
34
|
+
"host": "^11.0.0"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "directus-extension build",
|
|
38
|
+
"dev": "directus-extension build -w --no-minify",
|
|
39
|
+
"dev:browser": "node playwright-tools/playwright-dev.js",
|
|
40
|
+
"watch": "node playwright-tools/watch-dev.js",
|
|
41
|
+
"test": "node playwright-tools/test-extension.js",
|
|
42
|
+
"inspect": "node playwright-tools/inspect-vertical-alignment.js",
|
|
43
|
+
"console": "node playwright-tools/playwright-console-monitor.js",
|
|
44
|
+
"analyze": "node playwright-tools/playwright-assistant.js --report",
|
|
45
|
+
"debug": "node playwright-tools/playwright-assistant.js",
|
|
46
|
+
"ai": "node playwright-tools/ai-helper.js",
|
|
47
|
+
"ai:diagnose": "node playwright-tools/ai-helper.js diagnose",
|
|
48
|
+
"ai:package": "node playwright-tools/ai-helper.js package",
|
|
49
|
+
"ai:quick": "node playwright-tools/ai-helper.js quick",
|
|
50
|
+
"lint": "eslint . --max-warnings=0",
|
|
51
|
+
"lint:fix": "eslint . --fix",
|
|
52
|
+
"type-check": "vue-tsc --noEmit",
|
|
53
|
+
"format": "prettier --write \"src/**/*.{js,ts,vue,json,css}\"",
|
|
54
|
+
"format:check": "prettier --check \"src/**/*.{js,ts,vue,json,css}\"",
|
|
55
|
+
"quality": "pnpm run type-check && pnpm run lint && pnpm run format:check",
|
|
56
|
+
"quality:fix": "pnpm run lint:fix && pnpm run format"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@directus/format-title": "^12.0.1",
|
|
60
|
+
"date-fns": "^4.1.0",
|
|
61
|
+
"lodash": "^4.17.21"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@directus/extensions-sdk": "^11.0.0",
|
|
65
|
+
"@directus/types": "^11.0.0",
|
|
66
|
+
"@directus/utils": "^13.0.9",
|
|
67
|
+
"@eslint/js": "^9.33.0",
|
|
68
|
+
"@playwright/test": "^1.54.2",
|
|
69
|
+
"@types/lodash": "^4.14.202",
|
|
70
|
+
"@types/node": "^24.3.0",
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "^8.40.0",
|
|
72
|
+
"@typescript-eslint/parser": "^8.40.0",
|
|
73
|
+
"chalk": "^5.5.0",
|
|
74
|
+
"eslint": "^9.33.0",
|
|
75
|
+
"eslint-config-prettier": "^10.1.8",
|
|
76
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
77
|
+
"eslint-plugin-vue": "^10.4.0",
|
|
78
|
+
"playwright": "^1.54.2",
|
|
79
|
+
"prettier": "^3.6.2",
|
|
80
|
+
"typescript": "^5.0.0",
|
|
81
|
+
"vue": "^3.3.0",
|
|
82
|
+
"vue-eslint-parser": "^10.2.0",
|
|
83
|
+
"vue-router": "^4.5.1",
|
|
84
|
+
"vue-tsc": "^3.0.5"
|
|
85
|
+
}
|
|
86
|
+
}
|