-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.18 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "color2k",
"version": "2.0.0",
"description": "a color parsing and manipulation lib served in roughly 2kB",
"repository": {
"type": "git",
"url": "https://github.com/ricokahler/color2k.git"
},
"license": "MIT",
"author": {
"name": "Rico Kahler",
"email": "[email protected]",
"url": "https://github.com/ricokahler"
},
"keywords": [
"color",
"css-in-js",
"tinycolor",
"color-parser",
"color-manipulation",
"polished",
"chroma-js"
],
"sideEffects": false,
"main": "./dist/index.main.cjs.js",
"unpkg": "./dist/index.unpkg.umd.js",
"jsdelivr": "./dist/index.unpkg.umd.js",
"module": "./dist/index.module.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": [
{
"types": "./dist/index.d.ts",
"import": "./dist/index.exports.import.es.mjs",
"default": "./dist/index.exports.require.cjs.js"
},
"./dist/index.exports.require.cjs.js"
],
"./package.json": "./package.json"
},
"scripts": {
"build": "./scripts/build",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"prepare": "npm run build",
"test": "jest",
"website": "node ./scripts/website.js"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/node": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/preset-typescript": "7.26.0",
"@babel/register": "7.25.9",
"@rollup/plugin-alias": "4.0.4",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "0.4.4",
"@sanity/eslint-config-studio": "2.0.4",
"@types/jest": "29.5.14",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/showdown": "2.0.6",
"autoprefixer": "10.4.20",
"@babel/eslint-parser": "7.25.9",
"babel-plugin-module-resolver": "5.0.2",
"cssnano": "5.1.15",
"eslint": "8.57.1",
"jest": "29.7.0",
"postcss": "8.4.49",
"preact": "10.25.0",
"preact-render-to-string": "5.2.6",
"prettier": "2.8.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"rollup": "3.29.5",
"semantic-release": "24.2.0",
"showdown": "2.1.0",
"typescript": "4.9.5"
}
}