-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "pigment-ts",
"version": "0.2.7",
"description": "🎨 A lightweight utility for color manipulation and conversion.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"packageManager": "[email protected]",
"files": [
"dist",
"README.md",
"package.json",
"LICENSE"
],
"scripts": {
"build": "tsup",
"lint": "npx eslint .",
"format": "npx prettier . --write",
"test": "jest --verbose --coverage",
"minify": "npx terser dist/index.js -o dist/index.min.js -c -m"
},
"repository": {
"type": "git",
"url": "https://github.com/Jay-Karia/pigment-ts.git"
},
"author": "Jay-Karia",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jay-Karia/pigment-ts/issues"
},
"homepage": "https://github.com/Jay-Karia/pigment-ts#readme",
"keywords": [
"typescript",
"color",
"color-conversion",
"color-manipulation"
],
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.14.0",
"@types/jest": "^29.5.12",
"babel-jest": "^29.7.0",
"eslint": "^9.10.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"tsup": "^8.2.4",
"turbo": "^2.3.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.14.0"
}
}