This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
generated from 5t3ph/eleventy-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "@silexlabs/eleventy-plugin-directus",
"version": "1.0.16",
"description": "Expose Directus collections as global data in 11ty ",
"homepage": "https://github.com/silexlabs/eleventy-plugin-directus",
"main": ".eleventy.js",
"engines": {
"node": ">=18.13.0"
},
"scripts": {
"start": "eleventy --serve",
"directus:start": "node _scripts/directus-server/",
"directus:snapshot": "cd _scripts/directus-server/ && directus schema snapshot --yes ./snapshot.yaml",
"directus:snapshot:apply": "cd _scripts/directus-server/ && directus schema apply ./snapshot.yaml",
"build": "eleventy",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"bump": "npm --no-git-tag-version version"
},
"repository": {
"type": "git",
"url": "git@github.com:silexlabs/eleventy-plugin-directus.git"
},
"keywords": [
"11ty",
"11ty-plugin",
"eleventy",
"eleventy-plugin",
"directus",
"cms",
"no-code"
],
"author": {
"name": "lexoyo",
"url": "https://lexoyo.me/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/silexlabs/eleventy-plugin-directus/issues"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"directus": "9.21.*",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.4.3"
},
"dependencies": {
"@directus/sdk": "^10.3.1",
"memoize-one": "^6.0.0",
"sqlite3": "^5.1.4"
}
}