forked from higoka/habbo-swf-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.75 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.75 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
65
66
67
68
69
{
"name": "habbo-swf-extractor",
"version": "1.0.0",
"description": "A small command-line utility tool for extracting Habbo *.swf files.",
"scripts": {
"start:dev": "yarn ts-node-dev --respawn src/index.ts",
"start:prod": "node dist/index.js --in ./in/ --out ./out/",
"lint": "eslint --ext .js,.ts ./src --color --fix",
"build": "tsc"
},
"keywords": [
"habbo-swf-extractor",
"habbo-swf-extract",
"habbo",
"swf",
"extractor",
"extract",
"furnitures",
"clothes",
"image",
"binary",
"bin",
"xml",
"retrotown",
"devbest",
"ragezone",
"krews",
"nodejs",
"fast",
"performance"
],
"homepage": "https://github.com/higoka/habbo-swf-extractor",
"bugs": {
"url": "https://github.com/higoka/habbo-swf-extractor/issues"
},
"license": "MIT",
"author": "Nico Rickenbach",
"main": "src/index.js",
"bin": {
"habbo-swf-extractor": "dist/index.js",
"swf-extract": "dist/index.js",
"hse": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/higoka/habbo-swf-extractor.git"
},
"dependencies": {
"@gizeta/swf-reader": "^1.0.0",
"jimp": "^0.16.1",
"minimist": "^1.2.5",
"typescript": "^4.5.4",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8"
}
}