-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 3.22 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
{
"name": "agentscan",
"type": "module",
"private": true,
"packageManager": "pnpm@11.22.0",
"scripts": {
"build": "nuxt build",
"clean": "nuxt cleanup",
"clean:run": "nuxt cleanup && pnpm dev",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"add:automation": "pnpm exec tsx --env-file-if-exists=.env scripts/parse-automation-issue.ts",
"review:automations": "pnpm exec tsx --env-file-if-exists=.env scripts/review-automation-issues.ts",
"publish:automations": "pnpm exec tsx --env-file-if-exists=.env scripts/publish-automations.ts",
"publish:automations:dry-run": "pnpm exec tsx --env-file-if-exists=.env scripts/publish-automations.ts --dry-run",
"prune:automations": "pnpm exec tsx --env-file-if-exists=.env scripts/prune-automations.ts",
"prune:automations:dry-run": "pnpm exec tsx --env-file-if-exists=.env scripts/prune-automations.ts --dry-run",
"collect:adopters": "pnpm exec tsx --env-file-if-exists=.env scripts/collect-adopters.ts",
"collect:adopters:dry-run": "pnpm exec tsx --env-file-if-exists=.env scripts/collect-adopters.ts --dry-run",
"trigger:discord:report": "pnpm exec tsx --env-file-if-exists=.env scripts/notify-report-discord.ts",
"trigger:discord:report:dry-run": "pnpm exec tsx --env-file-if-exists=.env scripts/notify-report-discord.ts --dry-run",
"trigger:discord:digest": "pnpm exec tsx --env-file-if-exists=.env scripts/notify-report-discord.ts --event=digest",
"trigger:discord:digest:dry-run": "pnpm exec tsx --env-file-if-exists=.env scripts/notify-report-discord.ts --event=digest --dry-run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "eslint . --fix && prettier --write .",
"test": "vitest",
"prepare": "husky"
},
"dependencies": {
"@nuxt/fonts": "^0.14.0",
"@nuxtjs/color-mode": "^4.0.1",
"@octokit/app": "^16.1.4",
"@octokit/request-error": "^7.1.0",
"@octokit/webhooks": "^14.2.0",
"@tiptap/core": "^3.30.4",
"@tiptap/extension-link": "^3.27.1",
"@tiptap/extension-placeholder": "^3.31.3",
"@tiptap/extension-text": "^3.27.1",
"@tiptap/starter-kit": "^3.31.3",
"@tiptap/vue-3": "^3.31.3",
"@unocss/preset-icons": "^66.10.0",
"@unveil/identity": "2.1.0",
"@unveil/vk": "^0.6.0",
"@vueuse/core": "^14.4.0",
"dayjs": "^1.11.19",
"nuxt": "^4.5.2",
"octokit": "^5.0.5",
"simple-analytics-vue": "^3.1.0",
"tiptap-markdown": "^0.9.0",
"valibot": "^1.4.2",
"vue": "^3.5.28",
"vue-data-ui": "3.25.8",
"vue-router": "^4.6.4",
"yaml": "^2.9.0"
},
"lint-staged": {
"*.{js,ts,vue,json,css,md}": "prettier --write"
},
"devDependencies": {
"@github/issue-parser": "^2.0.0",
"@iconify-json/lucide": "^1.2.111",
"@nuxt/eslint": "^1.16.0",
"@octokit/types": "^16.0.0",
"@types/node": "^26.0.1",
"@unocss/nuxt": "^66.10.0",
"eslint": "^10.10.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.8.5",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"unocss": "^66.6.7",
"vitest": "^5.0.0"
}
}