-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.34 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": "fixelart",
"description": "Tool to fix AI-generated pixelart - or just turn your image into pixelart",
"version": "0.0.9",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"pixelart",
"pixel",
"fixelart",
"game",
"ai",
"midjourney"
],
"repository": {
"type": "git",
"url": "https://github.com/golota60/fixelart"
},
"author": "Szymon Wiszczuk <[email protected]>",
"homepage": "https://github.com/golota60/fixelart",
"license": "MIT",
"scripts": {
"start": "yarn build && node dist/index.js",
"build": "tsup",
"example-all-strategies": "ts-node ./tests/allStrategies.ts",
"example-all-images": "ts-node ./tests/allImages.ts",
"release:patch": "yarn build && standard-version --release-as patch && yarn publish",
"release:minor": "yarn build && standard-version --release-as minor && yarn publish",
"release:major": "yarn build && standard-version --release-as major && yarn publish"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/pngjs": "^6.0.1",
"pngjs": "^7.0.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
}
}