-
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.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "@bytes4ru/cocoa",
"type": "module",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": "Bytes4Run <info@bytes4run.com>",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"start": "node dist/server/entry.mjs",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy": "npm install && npm run build && npm run start"
},
"dependencies": {
"@astrojs/netlify": "^6.4.1",
"@techstark/opencv-js": "^4.11.0-release.1",
"astro": "^5.11.0",
"jimp": "^1.6.0",
"multer": "^2.0.1",
"sharp": "^0.34.3",
"zod": "^3.25.76"
},
"eslintConfig": {
"extends": "standard"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@jimp/types": "^1.6.0",
"@types/multer": "^2.0.0",
"@types/node": "^24.0.13",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-astro": "^1.3.1",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"standard": "^17.1.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
}
}