-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "hexashades",
"version": "1.0.1",
"description": "Creates shades & tints for a given HEX code.",
"main": "dist/index.esm.js",
"commonjs": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"type": "module",
"types": "src/index.d.ts",
"files": [
"dist/index.cjs.js",
"dist/index.esm.js",
"dist/index.umd.js",
"dist/index.d.ts"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arjunkdot/hexashades.git"
},
"keywords": [
"hex",
"rgb",
"colors",
"shades",
"tints"
],
"author": "arjunkdot",
"license": "MIT",
"bugs": {
"url": "https://github.com/arjunkdot/hexashades/issues"
},
"homepage": "https://github.com/arjunkdot/hexashades#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"jest": "^29.7.0",
"rollup": "^4.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}