-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 813 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 813 Bytes
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
{
"name": "img2brs",
"version": "0.0.0-development",
"description": "Converts images to Brickadia save files (.brs)",
"main": "src/index.js",
"browser": "dist/index.web.js",
"module": "dist/index.node.js",
"scripts": {
"build": "webpack",
"prepare": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "banhathome <chris@chrisbanh.com>",
"license": "MIT",
"keywords": [
"brs",
"brickadia",
"save",
"file",
"format",
"image"
],
"repository": {
"type": "git",
"url": "git+https://github.com/banhathome/img2brs-js.git"
},
"dependencies": {
"brs-js": "^2.1.2",
"canvas": "^3.1.2"
},
"devDependencies": {
"webpack": "^5.100.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}