forked from lyft/coloralgorithm
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.68 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.68 KB
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
{
"name": "@k-vyn/coloralgorithm",
"version": "2.0.0",
"description": "An algorithm to produce color sets",
"type": "module",
"main": "dist/bundle.js",
"types": "dist/bundle.d.ts",
"exports": {
".": {
"types": "./dist/bundle.d.ts",
"import": "./dist/bundle.js",
"require": "./dist/bundle.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "rollup -c",
"postbuild": "rm -rf dist/types",
"start": "rollup -c -w",
"test": "vitest run",
"lint": "eslint src tests",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/k-vyn/coloralgorithm.git"
},
"keywords": [
"color",
"palette",
"design-system",
"color-scale",
"color-generation",
"hsb",
"hsl",
"bezier",
"easing"
],
"author": "kevyn@kevyn.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/k-vyn/coloralgorithm/issues"
},
"homepage": "https://github.com/k-vyn/coloralgorithm#readme",
"dependencies": {
"bezier-easing": "^2.1.0",
"chroma-js": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chroma-js": "^2.4.4",
"@types/node": "^20.19.27",
"eslint": "^9.39.2",
"rollup": "^4.21.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.50.1",
"vitest": "^4.0.16"
}
}