jank-client-fork/package.json
2025-05-02 14:05:31 -05:00

32 lines
960 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 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
}
}