-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@nitrots/nitro-converter",
"description": "Serverside javascript library for bundling .nitro assets",
"version": "1.0.0",
"private": true,
"workspaces": [
"web"
],
"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",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/Main.ts",
"start": "node ./dist/Main.js",
"start:bundle": "yarn start --bundle",
"start:extract": "yarn start --extract",
"start:convert-swf": "yarn start --convert-swf",
"web:dev": "yarn workspace nitro-asset-creator dev",
"web:build": "yarn workspace nitro-asset-creator build",
"web:preview": "yarn workspace nitro-asset-creator preview"
},
"dependencies": {
"@inquirer/prompts": "^8.4.3",
"bytebuffer": "^5.0.1",
"concat-frames": "^1.0.3",
"free-tex-packer-core": "^0.3.5",
"jpg-stream": "^1.1.2",
"jszip": "^3.10.1",
"lzma-native": "^8.0.6",
"mysql": "^2.18.1",
"node-fetch": "^3.3.2",
"ora": "^9.4.0",
"png-stream": "^1.0.5",
"stream-to-array": "^2.3.0",
"typeorm": "^0.3.28",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/bytebuffer": "^5.0.49",
"@types/lzma-native": "^4.0.4",
"@types/node": "^25.9.1",
"@types/node-fetch": "^2.6.13",
"@types/stream-to-array": "^2.3.3",
"@types/xml2js": "^0.4.14",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"tsx": "^4.22.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.4"
}
}