-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.47 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
{
"name": "@redbeed/parallax-interface",
"version": "1.0.0",
"type": "module",
"description": "A lightweight and flexible library for adding mouse-driven parallax effects to your HTML elements, enhancing UI depth and user engagement in any project.",
"contributors": [
{
"name": "Chris Schön",
"email": "hello@redbeed.com",
"url": "https://redbeed.com/chris"
},
{
"name": "redbeed",
"url": "https://redbeed.com"
}
],
"main": "dist/parallax-interface.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"postpublish" : "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redbeed/parallax-interface.git"
},
"keywords": [
"javascript",
"animation"
],
"author": "Chris Schön",
"license": "MIT",
"bugs": {
"url": "https://github.com/redbeed/parallax-interface/issues"
},
"homepage": "https://github.com/redbeed/parallax-interface#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"rollup": "^3.21.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-postcss": "^4.0.2"
},
"dependencies": {
"@rollup/plugin-babel": "^6.0.3",
"lodash.throttle": "^4.1.1"
}
}