-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "node-simple-pixelate",
"version": "1.1.6",
"description": "Pixelizes images to create pixel art.",
"repository": {
"type": "git",
"url": "https://github.com/thinknathan/node-simple-pixelate.git"
},
"author": "Nathan Bolton (https://thinknathan.ca/)",
"license": "CC0-1.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"type": "commonjs",
"main": "px.cjs",
"bin": {
"px": "./px.cjs"
},
"files": [
"px.cjs",
"utils"
],
"scripts": {
"ci": "npm run lint && tsc --noEmit",
"build": "tsc && npm run renameCjs && prettier \"*.cjs\" --write",
"lint": "eslint src",
"renameCjs": "node -e \"require('fs').renameSync('px.js', 'px.cjs')\"",
"prettier": "prettier \"./**/*.{ts,d.ts,cjs,md,json}\" --write"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/yargs": "^17.0.32",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"prettier": "^3.1.1",
"typescript": "~5.4.2",
"typescript-eslint": "^7.6.0"
},
"dependencies": {
"jimp": "~0.22.10",
"yargs": "^17.7.2"
}
}