-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "parallax_background",
"version": "2.0.3",
"description": "VanillaJS parallax background plugin",
"types": "./dist/index.d.ts",
"main": "./dist/parallaxBackground.umd.js",
"module": "./dist/parallaxBackground.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/parallaxBackground.mjs",
"require": "./dist/parallaxBackground.umd.js"
}
},
"devDependencies": {
"@lemehovskiy/scroller": "^0.2.7",
"@types/jquery": "^3.5.29",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"typescript": "^5.3.3",
"vite": "^5.0.6",
"vite-plugin-dts": "^3.6.4"
},
"peerDependencies": {
"gsap": "^3.12.3"
},
"scripts": {
"build": "tsc && vite build",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint src/ --ext .ts --max-warnings=0",
"lint:prettier": "prettier 'src/**/*.ts' --check",
"fix": "npm run fix:prettier && npm run fix:eslint",
"fix:eslint": "eslint src/ --ext .ts --fix --max-warnings=0",
"fix:prettier": "prettier 'src/**/*.ts' --write",
"prepare": "husky install"
},
"keywords": [
"parallax",
"gsap",
"greensock",
"parallax scroll",
"parallax background",
"animation",
"plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/lemehovskiy/parallax_background"
},
"author": "lemehovskiy",
"license": "MIT"
}