-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.83 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.83 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
103
104
105
106
107
{
"name": "projectm-visualizer.org",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"builder": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "nuxt typecheck",
"release": "semantic-release",
"prepare:git-hooks": "simple-git-hooks",
"prepare": "bun prepare:git-hooks",
"ftp:assets:pull": "bun run ./scripts/ftp.ts pull assets",
"ftp:assets:push": "bun run ./scripts/ftp.ts push assets",
"ftp:site:pull": "bun run ./scripts/ftp.ts pull site",
"ftp:site:push": "bun run ./scripts/ftp.ts push site",
"generate-reports": "bun run ./scripts/generate-reports.ts --encrypt",
"generate-secure-key": "bun run ./scripts/generate-secure-key.ts",
"push-secrets": "bun run ./scripts/push-secrets.ts"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.68",
"@iconify-json/simple-icons": "^1.2.52",
"@nuxt/content": "3.5.1",
"@nuxt/image": "^1.11.0",
"@nuxt/ui": "^4.0.1",
"@nuxtjs/device": "^3.2.4",
"@pinia/nuxt": "^0.11.2",
"@standard-schema/spec": "^1.0.0",
"@videojs-player/vue": "^1.0.0",
"@vueuse/nuxt": "^13.9.0",
"better-sqlite3": "^12.2.0",
"nuxt": "^4.1.2",
"nuxt-og-image": "^5.1.9",
"pinia": "^3.0.3",
"video.js": "^8.23.4",
"zod": "^4.1.8"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@nuxt/eslint": "^1.9.0",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.2.16",
"@types/libsodium-wrappers": "^0.7.14",
"basic-ftp": "^5.0.5",
"eslint": "^9.35.0",
"libsodium-wrappers": "^0.7.15",
"lint-staged": "^16.1.6",
"octokit": "^5.0.3",
"semantic-release": "^24.2.8",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.8.3",
"vue-tsc": "^3.0.7"
},
"trustedDependencies": [
"@parcel/watcher",
"@tailwindcss/oxide",
"better-sqlite3",
"esbuild",
"sharp",
"simple-git-hooks",
"unrs-resolver",
"vue-demi"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged",
"commit-msg": "bunx commitlint --edit ${1}"
},
"lint-staged": {
"*": "bunx eslint --fix"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): v${nextRelease.version} [skip ci]"
}
],
[
"@semantic-release/github",
{
"assets": []
}
]
]
}
}