-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1023 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
31
32
33
34
35
36
37
38
39
{
"name": "sprite-sheet-to-json",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-typescript": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rollup": "^1.16.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-terser": "^5.0.0",
"typescript": "^3.8.3",
"serve": "^11.0.2"
},
"dependencies": {
"tslib": "^1.11.1"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"start": "serve public",
"deploy": "scripts/commit-to-gh-pages.sh"
},
"description": "A simple tool to create texture atlas JSON hashes from sprite sheet images.",
"version": "1.0.0",
"keywords": [
"texture",
"atlas",
"spritesheet",
"sprite",
"JSON"
],
"author": "Aamir Syed",
"license": "ISC"
}