-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 1.91 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 1.91 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
{
"name": "@nuxtus/directus-extension-nuxtus-hook",
"version": "1.4.1",
"keywords": [
"directus",
"directus-extension",
"directus-custom-hook"
],
"repository": {
"type": "git",
"url": "https://github.com/nuxtus/hook"
},
"directus:extension": {
"type": "hook",
"path": "dist/index.js",
"source": "src/index.ts",
"host": "^9.13.0"
},
"scripts": {
"build": "directus-extension build",
"dev": "directus-extension build --watch",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@directus/extensions-sdk": "17.0.11",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.2.6",
"@semantic-release/release-notes-generator": "12.1.0",
"@types/node": "24.12.0",
"semantic-release": "23.1.1",
"typescript": "5.9.3",
"vitest": "1.6.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": "Craig Harman",
"license": "MIT",
"release": {
"branches": "main",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"type": "feat",
"release": "minor"
},
{
"type": "revert",
"release": "patch"
},
{
"type": "refactor",
"release": "minor"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "docs",
"scope": "README",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogTitle": "Changelog"
}
],
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"volta": {
"node": "24.14.0"
},
"dependencies": {
"axios": "^1.6.7"
}
}