-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1003 Bytes
/
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
{
"name": "color-picking-compass",
"version": "0.2.0",
"main": "dist.js",
"author": "Dima Semyushkin <[email protected]> (https://devg.ru)",
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"license": "MIT",
"peerDependencies": {
"d3-interpolate": "3",
"d3-scale": "4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devgru/color-picking-compass.git"
},
"keywords": [
"palette generation",
"opposite color",
"wide gamut colors",
"color scale",
"rgb cube"
],
"scripts": {
"prepack": "tsup",
"test": "bun run prepack ; bun test"
},
"files": [
"dist"
],
"devDependencies": {
"@types/bun": "1",
"@types/culori": "2",
"@types/d3-interpolate": "3",
"@types/d3-scale": "4",
"culori": "4",
"prettier": "3",
"tsup": "^8.3.0",
"typescript": "5.6"
}
}