-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.41 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.41 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
97
98
99
100
101
102
{
"name": "directus-extension-super-table",
"version": "0.5.1",
"description": "A powerful and feature-rich table layout extension for Directus 11+ with inline editing, quick filters, and manual sorting",
"icon": "table_rows",
"keywords": [
"directus",
"directus-extension",
"directus-layout",
"table",
"inline-editing",
"super-table"
],
"homepage": "https://github.com/smartlabsAT/directus-super-table#readme",
"bugs": {
"url": "https://github.com/smartlabsAT/directus-super-table/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartlabsAT/directus-super-table.git"
},
"license": "MIT",
"author": "smartlabs AT",
"type": "module",
"files": [
"index.js",
"README.md",
"LICENSE"
],
"main": "index.js",
"directus:extension": {
"type": "layout",
"path": "index.js",
"source": "index.ts",
"host": "^11.0.0"
},
"scripts": {
"build": "directus-extension build",
"dev": "directus-extension build -w --no-minify",
"dev:browser": "node playwright-tools/playwright-dev.js",
"watch": "node playwright-tools/watch-dev.js",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:e2e": "node playwright-tools/test-extension.js",
"test:e2e:issue-47": "node playwright-tools/test-issue-47.js",
"test:e2e:issue-48": "node playwright-tools/test-issue-48.js",
"inspect": "node playwright-tools/inspect-vertical-alignment.js",
"console": "node playwright-tools/playwright-console-monitor.js",
"analyze": "node playwright-tools/playwright-assistant.js --report",
"debug": "node playwright-tools/playwright-assistant.js",
"ai": "node playwright-tools/ai-helper.js",
"ai:diagnose": "node playwright-tools/ai-helper.js diagnose",
"ai:package": "node playwright-tools/ai-helper.js package",
"ai:quick": "node playwright-tools/ai-helper.js quick",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"type-check": "vue-tsc --noEmit",
"format": "prettier --write \"src/**/*.{js,ts,vue,json,css}\"",
"format:check": "prettier --check \"src/**/*.{js,ts,vue,json,css}\"",
"quality": "pnpm run type-check && pnpm run lint && pnpm run format:check",
"quality:fix": "pnpm run lint:fix && pnpm run format"
},
"dependencies": {
"@directus/format-title": "^12.1.2",
"date-fns": "^4.1.0",
"lodash": "^4.18.1"
},
"devDependencies": {
"@directus/extensions-sdk": "^17.1.4",
"@directus/types": "^15.0.3",
"@directus/utils": "^13.4.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@types/lodash": "^4.17.24",
"@types/node": "^22.19.18",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@vitejs/plugin-vue": "^6.0.6",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/ui": "^4.1.5",
"@vue/test-utils": "^2.4.10",
"chalk": "^5.6.2",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^10.9.1",
"happy-dom": "^20.9.0",
"jsdom": "^29.1.1",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vite": "^8.0.11",
"vitest": "^4.1.5",
"vue": "^3.5.34",
"vue-eslint-parser": "^10.4.0",
"vue-router": "^5.0.6",
"vue-tsc": "^3.2.8"
}
}