-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.98 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
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
103
104
105
106
107
108
109
110
111
{
"name": "vips-logic-exercises-plugin",
"version": "0.0.0",
"description": "",
"scripts": {
"start": "vite --host",
"dev": "vite --host",
"build": "vite build && ts-node createArchive.ts",
"serve": "vite preview",
"lint": "eslint .",
"format": "prettier --write ."
},
"license": "MIT",
"devDependencies": {
"@google/semantic-release-replace-plugin": "^1.1.0",
"@semantic-release/exec": "^6.0.3",
"@types/archiver": "^5.3.1",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"archiver": "^5.3.1",
"autoprefixer": "^10.4.7",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"postcss-nested": "^5.0.6",
"prettier": "2.7.0",
"semantic-release": "^19.0.5",
"semantic-release-studip-webhook": "^1.3.0",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"vite": "^3.1.0",
"vite-plugin-solid": "^2.3.0"
},
"dependencies": {
"lodash": "^4.17.21",
"solid-js": "^1.5.2",
"zod": "^3.18.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
[
"@google/semantic-release-replace-plugin",
{
"replacements": [
{
"files": [
"plugin.manifest"
],
"from": "version=.*",
"to": "version=${nextRelease.version}",
"results": [
{
"file": "plugin.manifest",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
},
{
"files": [
"templates/index.php"
],
"from": "<script type=\"module\".*</script>",
"to": "<link rel=\"stylesheet\" href=\"<?= $basePath . \"/\" . $cssEntry ?>\"/><script type=\"module\" src=\"<?= $basePath . \"/\" . $jsEntry ?>\"></script>",
"results": [
{
"file": "templates/index.php",
"hasChanged": true,
"numMatches": 1,
"numReplacements": 1
}
],
"countMatches": true
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"prepareCmd": "npm run build"
}
],
[
"@semantic-release/github",
{
"assets": {
"path": "package.zip",
"label": "Plugin Archive"
}
}
],
"semantic-release-studip-webhook"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}