-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.73 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "tailwindcss-lerp-colors",
"version": "1.2.20",
"description": "Interpolate between defined colors in Tailwind config for additional color stops",
"type": "module",
"source": "index.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"types": "dist/types/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "microbundle",
"dev": "microbundle watch"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandonmcconnell/tailwind-lerp-colors.git"
},
"keywords": [
"tailwind",
"plugin",
"color",
"interpolation",
"functions",
"linear",
"interpolate-colors",
"chroma",
"color-space",
"color-modes",
"interpolate",
"color-spaces",
"color-mode"
],
"author": "Brandon McConnell",
"license": "MIT",
"bugs": {
"url": "https://github.com/brandonmcconnell/tailwind-lerp-colors/issues"
},
"homepage": "https://github.com/brandonmcconnell/tailwind-lerp-colors#readme",
"dependencies": {
"chroma-js": "^2.4.2"
},
"devDependencies": {
"@types/chroma-js": "^2.4.0",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}