mirror of
https://github.com/MathMan05/Fermi.git
synced 2026-03-29 20:09:53 +00:00
32 lines
948 B
JSON
32 lines
948 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"
|
|
},
|
|
"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
|
|
}
|
|
}
|