-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.15 KB
/
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
40
41
42
43
44
45
46
47
48
49
{
"name": "vectorize-pixelart",
"version": "0.2.0",
"description": "Convert raster pixel art graphics to vector",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "ts-node node_modules/.bin/tape ./test/**",
"lint": "ts-standard src/",
"format": "ts-standard --fix src/"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"author": "Serhii Zasenko",
"license": "GPL-3.0-or-later",
"dependencies": {
"pngjs": "^7.0.0"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@types/pngjs": "^6.0.1",
"@types/tape": "^5.6.0",
"eslint": "^8.42.0",
"standard": "^17.1.0",
"tape": "^5.6.3",
"ts-node": "^10.9.1",
"ts-standard": "^12.0.2",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/und3f/vectorize-pixelart.git"
},
"bin": {
"vectorize-pixelart": "lib/vectorize-pixelart.js"
},
"keywords": [
"vector",
"svg",
"convert"
],
"bugs": {
"url": "https://github.com/und3f/vectorize-pixelart/issues"
},
"homepage": "https://github.com/und3f/vectorize-pixelart#readme"
}