Files
Fermi/package.json
2025-11-06 21:26:34 +00:00

34 lines
999 B
JSON

{
"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",
"compression": "^1.8.0",
"express": "^4.21.2"
},
"devDependencies": {
"@types/audioworklet": "^0.0.90",
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/node-fetch": "^2.6.12",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"prettier": {
"useTabs": true,
"printWidth": 100,
"semi": true,
"bracketSpacing": false
}
}