forked from MathMan05/Fermi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 960 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 960 Bytes
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
{
"name": "jankclient",
"version": "0.2.0",
"description": "A SpaceBar Client written in TS HTML and CSS to run, clone the repo and do either `npm start` or `bun start` both bun and node are supported, and both should function as expected. To access Jank Client after init simply go to http://localhost:8080/login and login with your username and password.",
"main": ".dist/index.js",
"type": "module",
"scripts": {
"bunBuild": "bun build.ts",
"build": "node buildnode.js && node build.js",
"start": "node dist/index.js"
},
"author": "MathMan05",
"license": "GPL-3.0",
"dependencies": {
"compression": "^1.8.0",
"@swc/core": "1.11.24",
"express": "^4.21.2"
},
"devDependencies": {
"prettier": "^3.5.3",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/node-fetch": "^2.6.12",
"typescript": "^5.8.3"
},
"prettier": {
"useTabs": true,
"printWidth": 100,
"semi": true,
"bracketSpacing": false
}
}