-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.35 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.35 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
{
"name": "react2shellexploitvisualized",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"transcribe": "python scripts/transcribe.py ssr --model small && python scripts/transcribe.py rsc --model small && python scripts/transcribe.py exploit --model small && python scripts/transcribe.py fix --model small && python scripts/transcribe.py lessons --model small",
"transcribe:general": "python scripts/transcribe.py ssr --level general --model small && python scripts/transcribe.py rsc --level general --model small && python scripts/transcribe.py exploit --level general --model small && python scripts/transcribe.py fix --level general --model small && python scripts/transcribe.py lessons --level general --model small",
"transcribe:all": "npm run transcribe && npm run transcribe:general"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.48.5",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"svelte": "^5.43.8",
"svelte-check": "^4.3.4",
"typescript": "^5.9.3",
"vite": "^7.2.2"
}
}