-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
{
"name": "hue-map",
"version": "1.0.0",
"type": "module",
"description": "Interpolate gradients based on common palettes",
"keywords": [
"viridis",
"color",
"hue",
"interpolate",
"hex",
"rgb",
"inferno",
"magma",
"plasma",
"matplotlib",
"seaborn",
"gradient",
"generate",
"scale",
"plot",
"graph"
],
"license": "MIT",
"repository": "github:giraugh/hue-map",
"files": [
"dist"
],
"main": "./dist/hue-map.umd.cjs",
"types": "./dist/hue-map.d.ts",
"module": "./dist/hue-map.js",
"exports": {
".": {
"import": "./dist/hue-map.js",
"require": "./dist/hue-map.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:demo": "tsc && vite build -m demo",
"lint": "eslint --ext .ts ./lib",
"test": "vitest",
"ci:release": "yarn build && yarn changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.24.3",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"typescript": "^4.6.4",
"vite": "^3.0.7",
"vitest": "^0.22.1",
"vite-plugin-dts": "^1.6.5"
}
}