nitro-converter/package.json

54 lines
1.5 KiB
JSON
Raw Normal View History

2021-01-28 09:12:04 +01:00
{
2022-01-18 16:17:38 +01:00
"name": "@nitrots/nitro-converter",
"description": "Serverside javascript library for bundling .nitro assets",
2021-01-28 09:12:04 +01:00
"version": "1.0.0",
2022-01-18 16:17:38 +01:00
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://git.krews.org/nitro/nitro-converter.git"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://git.krews.org/nitro/nitro-converter/issues"
},
"homepage": "https://git.krews.org/nitro/nitro-converter",
2021-01-28 09:12:04 +01:00
"scripts": {
2021-12-23 08:43:21 +01:00
"build": "tsc",
2022-02-02 18:07:53 +01:00
"start:dev": "ts-node-dev --respawn --transpile-only src/Main.ts",
2022-07-27 18:46:23 +02:00
"start": "node ./dist/Main.js",
2021-12-23 08:43:21 +01:00
"start:bundle": "yarn start --bundle",
"start:extract": "yarn start --extract",
2022-02-02 18:07:53 +01:00
"start:convert-swf": "yarn start --convert-swf"
2021-01-28 09:12:04 +01:00
},
"dependencies": {
2021-02-02 02:13:17 +01:00
"bytebuffer": "^5.0.1",
2021-02-03 19:02:10 +01:00
"concat-frames": "^1.0.3",
2022-07-27 18:44:31 +02:00
"free-tex-packer-core": "^0.3.4",
2021-02-03 19:02:10 +01:00
"jpg-stream": "^1.1.2",
2021-03-09 00:13:43 +01:00
"lzma-purejs": "^0.9.3",
2022-07-27 18:44:31 +02:00
"node-fetch": "2.6.1",
"ora": "5.3.0",
2021-12-22 09:45:09 +01:00
"pako": "^2.0.4",
2021-02-03 19:02:10 +01:00
"png-stream": "^1.0.5",
"reflect-metadata": "^0.1.13",
2021-02-03 19:02:10 +01:00
"stream-to-array": "^2.3.0",
2022-07-27 18:44:31 +02:00
"tsyringe": "^4.7.0",
2021-01-28 09:12:04 +01:00
"xml2js": "^0.4.23"
2021-02-04 02:49:10 +01:00
},
2021-02-17 06:14:07 +01:00
"devDependencies": {
"@types/bytebuffer": "^5.0.42",
2022-07-27 18:44:31 +02:00
"@types/node": "^18.6.1",
"@types/node-fetch": "^2.6.2",
"@types/pako": "^2.0.0",
2021-12-22 09:45:09 +01:00
"@types/stream-to-array": "^2.3.0",
2022-07-27 18:44:31 +02:00
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.3.5"
2021-02-17 06:14:07 +01:00
}
2021-01-28 09:12:04 +01:00
}