-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
73 lines (73 loc) · 1.77 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
{
"name": "react-color-palette",
"version": "7.3.0",
"description": "🎨 Lightweight Color Picker component for React.",
"author": "Wondermarin",
"main": "dist/rcp.js",
"module": "dist/rcp.mjs",
"types": "dist/rcp.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/rcp.d.ts",
"import": "./dist/rcp.mjs",
"require": "./dist/rcp.js"
},
"./css": "./dist/css/rcp.css",
"./dist/css/rcp.css": "./dist/css/rcp.css"
},
"homepage": "https://github.com/Wondermarin/react-color-palette#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Wondermarin/react-color-palette"
},
"bugs": {
"url": "https://github.com/Wondermarin/react-color-palette/issues"
},
"license": "MIT",
"sideEffects": [
"*.css"
],
"private": false,
"keywords": [
"react",
"react-component",
"color-palette",
"color palette",
"color-picker",
"color picker",
"color",
"picker"
],
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"test:lint": "eslint src/**/*.{ts,tsx}",
"test:types": "tsc",
"test": "pnpm test:lint && pnpm test:types",
"prebuild": "pnpm test",
"build": "tsup"
},
"peerDependencies": {
"react": ">=16.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@types/node": "^20.4.4",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.0",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
}
}