-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 941 Bytes
/
package.json
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
{
"name": "@sircfenner/png-luau",
"version": "0.1.0",
"description": "Luau library for working with PNG files",
"license": "MIT",
"author": "sircfenner <[email protected]>",
"homepage": "https://github.com/sircfenner/png-luau#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sircfenner/png-luau.git"
},
"main": "src/init.luau",
"scripts": {
"build": "sh ./scripts/build.sh",
"clean": "rm -rf node_modules build temp",
"format": "stylua .",
"lint": "sh ./scripts/analyze.sh && selene src",
"lint:luau": "sh ./scripts/analyze.sh",
"lint:selene": "selene src",
"test": "sh ./scripts/run-tests.sh",
"style-check": "stylua . --check",
"verify-pack": "npm pack --dry-run"
},
"keywords": [
"luau"
],
"devDependencies": {
"sharp": "^0.33.5"
}
}