This repository was archived by the owner on Nov 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 433
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "pyrus",
"type": "module",
"version": "0.0.1",
"scripts": {
"build:all": "npm run format && npm run lint && npm run build",
"start": "node .",
"build": "astro build",
"dev": "npm run build && npm run start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@astrojs/node": "^9.1.3",
"@astrojs/sitemap": "^3.3.0",
"@mercuryworkshop/bare-as-module3": "^2.2.5",
"@mercuryworkshop/bare-mux": "^2.1.7",
"@mercuryworkshop/epoxy-transport": "^2.1.27",
"@mercuryworkshop/libcurl-transport": "^1.4.0",
"@mercuryworkshop/wisp-js": "^0.3.3",
"@rubynetwork/rammerhead": "^1.3.6",
"@titaniumnetwork-dev/ultraviolet": "^3.2.10",
"@tomphttp/bare-server-node": "^2.0.5",
"@types/node": "^22.13.11",
"astro": "^5.5.4",
"chalk": "^5.4.1",
"cookie-parser": "^1.4.7",
"dotenv-flow": "^4.1.0",
"express": "^4.21.2",
"notyf": "^3.10.0",
"sequelize": "^6.37.6",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"eslint": "^9.23.0",
"eslint-plugin-astro": "^1.3.1",
"prettier": "3.5.3",
"prettier-plugin-astro": "^0.14.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.9"
}
}