-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "clancy",
"version": "0.2.0",
"description": "A library for deriving color data from image files",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"require": {
"default": "./dist/index.cjs",
"types": "./dist/index.d.cts"
}
}
},
"files": [
"dist",
"package.json"
],
"engines": {
"node": ">=18.18.2"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsup",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/zacharyarney/clancy.git"
},
"keywords": [
"jpeg",
"png",
"webp",
"avif",
"tiff",
"gif",
"image",
"color",
"histogram",
"palette"
],
"author": "Zachary Arney",
"license": "MIT",
"bugs": {
"url": "https://github.com/zacharyarney/clancy/issues"
},
"homepage": "https://github.com/zacharyarney/clancy#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"sharp": "0.32.6"
}
}