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
31 lines (31 loc) · 948 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 948 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
{
"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 Fermi 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": {
"@swc/core": "1.11.24"
},
"devDependencies": {
"@types/audioworklet": "^0.0.90",
"@types/compression": "^1.8.1",
"@types/express": "^4.17.25",
"@types/node-fetch": "^2.6.13",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
},
"prettier": {
"useTabs": true,
"printWidth": 100,
"semi": true,
"bracketSpacing": false
}
}