nitro-imager/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2021-09-02 19:31:56 +02:00
{
"name": "nitro-imager",
"version": "1.0.0",
"description": "",
2021-09-09 09:14:44 +02:00
"main": "index.ts",
2021-09-02 19:31:56 +02:00
"dependencies": {
"bytebuffer": "^5.0.1",
2022-12-15 19:51:10 +01:00
"canvas": "^2.10.2",
"cli-color": "^2.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
2021-09-09 09:14:44 +02:00
"gifencoder": "^2.0.1",
2022-12-15 19:51:10 +01:00
"node-fetch": "^2.0.0",
"pako": "^2.1.0"
2021-09-02 19:31:56 +02:00
},
"devDependencies": {
2022-12-15 19:51:10 +01:00
"@types/bytebuffer": "^5.0.44",
"@types/cli-color": "^2.0.2",
"@types/express": "^4.17.15",
2021-09-09 09:14:44 +02:00
"@types/gifencoder": "^2.0.1",
2022-12-15 19:51:10 +01:00
"@types/node": "^18.11.15",
"@types/pako": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
2021-09-02 19:31:56 +02:00
},
"scripts": {
2021-09-09 09:14:44 +02:00
"build": "tsc",
"start": "node ./dist/index.js",
2021-09-02 19:31:56 +02:00
"start:dev": "ts-node-dev --respawn --transpile-only ./src/main.ts"
},
"repository": {
"type": "git",
2021-09-09 09:40:59 +02:00
"url": "git+https://git.krews.org/nitro/nitro-imager.git"
2021-09-02 19:31:56 +02:00
},
"author": "",
"license": "ISC",
"bugs": {
2021-09-09 09:40:59 +02:00
"url": "https://git.krews.org/nitro/nitro-imager/issues"
2021-09-02 19:31:56 +02:00
},
2021-09-09 09:40:59 +02:00
"homepage": "https://git.krews.org/nitro/nitro-imager"
2021-09-02 19:31:56 +02:00
}