-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.83 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.83 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "svg-gradient-mesh",
"description": "Gradient mesh emulation library using SVG Voronoi surfaces and advanced SVG filters for smooth color transitions",
"homepage": "https://tombigel.github.io/svg-mesh",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --config vite.lib.config.ts",
"build:demo": "vite build",
"clean": "rimraf dist build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"preview": "vite preview",
"predeploy": "npm run build:demo",
"deploy": "gh-pages -d build",
"version:patch": "npm version patch -m \"Release patch version %s\"",
"version:minor": "npm version minor -m \"Release minor version %s\"",
"version:major": "npm version major -m \"Release major version %s\"",
"prepublishOnly": "npm run clean && npm run build:lib",
"release": "npm run test && npm run version:patch && git push --follow-tags origin main && npm publish && npm run deploy"
},
"dependencies": {
"d3-delaunay": "^6.0.4"
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/d3-delaunay": "^6.0.4",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"gh-pages": "^6.1.0",
"jsdom": "^23.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.6.4",
"vitest": "^1.1.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"keywords": [
"svg",
"gradient-mesh",
"voronoi",
"mesh",
"gradient",
"svg-filters",
"color-transitions",
"artistic-effects",
"react",
"typescript"
],
"author": "Tom Bigelajzen <tombigel@gmail.com> (https://github.com/tombigel)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tombigel/svg-mesh.git"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}