-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "@babidi/pix",
"version": "1.0.8",
"description": "A library to process images and extract dominant color and palette",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "node dist/index.js",
"build": "tsc --build --clean && tsc && npm run copy",
"copy": "ncp src/lib dist/lib",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix"
},
"keywords": [
"image",
"processing",
"color",
"palette"
],
"author": "Valentin Marquez",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"ncp": "^2.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valentin-marquez/pix.git"
},
"bugs": {
"url": "https://github.com/valentin-marquez/pix/issues"
},
"homepage": "https://github.com/valentin-marquez/pix#readme",
"type": "module"
}