-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.8 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.8 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-linear-gradient-picker",
"version": "5.0.0",
"description": "React linear gradient picker",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./index.css": "./dist/index.css",
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"scripts": {
"storybook": "storybook dev -p 7006",
"build-storybook": "storybook build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,scss}\"",
"fix": "yarn format && yarn lint:fix",
"build": "vite build",
"typecheck": "tsc --noEmit",
"ci": "yarn lint && yarn typecheck && yarn test && yarn build",
"deploy-storybook": "storybook-to-ghpages",
"prepublishOnly": "npm run build && npm run deploy-storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/odedglas/react-linear-gradient-picker"
},
"keywords": [
"gradient-picker",
"linear-gradient",
"svg"
],
"author": "Oded Goldglas <odedglas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/odedglas/react-linear-gradient-picker/issues"
},
"homepage": "https://github.com/odedglas/react-linear-gradient-picker#readme",
"peerDependencies": {
"react": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@storybook/addon-links": "^9.1.5",
"@storybook/react-vite": "^9.1.5",
"@storybook/storybook-deployer": "^2.8.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.14",
"@types/react": "^19.0.12",
"@types/react-color": "^3.0.13",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^26.1.0",
"prettier": "^3.2.5",
"rc-color-picker": "^1.1.5",
"react": "^18.2.0",
"react-color": "^2.12.0",
"react-dom": "^18.2.0",
"sass": "^1.52.1",
"storybook": "^9.1.5",
"typescript": "^5.8.2",
"vite": "^7.1.5",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}