-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"private": true,
"name": "modmirror",
"version": "0.0.0",
"description": "Find enforcement drift before your users do.",
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"build": "vite build",
"deploy": "npm run type-check && npm run lint && npm run test && devvit upload",
"dev": "devvit playtest",
"launch": "npm run deploy && devvit publish",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"login": "devvit login",
"prettier": "prettier --write .",
"test": "vitest run --config vitest.config.ts",
"type-check": "tsc --build"
},
"engines": {
"node": ">=22.2.0"
},
"dependencies": {
"@devvit/start": "0.12.24",
"@devvit/web": "0.12.24",
"@hono/node-server": "^1.19.9",
"devvit": "0.12.24",
"hono": "4.12.21"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@types/node": "^22.19.7",
"eslint": "9.39.2",
"globals": "17.6.0",
"prettier": "3.8.3",
"typescript": "5.9.3",
"typescript-eslint": "8.59.4",
"vite": "7.3.3",
"vitest": "4.1.7"
},
"overrides": {
"tmp": "0.2.5",
"ws": "8.20.1"
}
}