forked from cereallarceny/gradient-path
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.71 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
{
"name": "gradient-path",
"version": "2.5.1",
"description": "A small library to have any gradient follow along any SVG path",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "rollup -c",
"prepare": "yarn build",
"version": "auto-changelog -p && git add CHANGELOG.md",
"test": "echo \"Error: no test specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cereallarceny/gradient-path.git"
},
"keywords": [
"svg",
"gradient",
"path",
"linear",
"d3"
],
"author": "Patrick Cason <me@patrickcason.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cereallarceny/gradient-path/issues"
},
"homepage": "https://cereallarceny.github.io/gradient-path/",
"browserslist": "> 0.25%, not dead",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"np": {
"2fa": true
},
"dependencies": {
"@rollup/plugin-babel": "^6.0.4",
"tinygradient": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"auto-changelog": "^2.5.0",
"babel-loader": "^10.0.0",
"d3": "^7.9.0",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rollup": "^4.38.8",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4"
}
}