-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
57 lines (57 loc) · 1.77 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
{
"name": "simple-parallax-js",
"version": "6.0.1",
"description": "simpleParallax.js is a lightweight and easy-to-use JS library that adds parallax animations to any image.",
"homepage": "https://simpleparallax.com/",
"main": "dist/react/simpleParallax.umd.js",
"module": "dist/react/simpleParallax.es.js",
"types": "dist/react/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/geosigno/simpleParallax.git"
},
"author": "Geoffrey Signorato <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geosigno/simpleParallax/issues"
},
"exports": {
".": {
"import": "./dist/react/simpleParallax.es.js",
"require": "./dist/react/simpleParallax.umd.js",
"types": "./dist/react/index.d.ts"
},
"./vanilla": {
"import": "./dist/vanilla/simpleParallaxVanilla.es.js",
"require": "./dist/vanilla/simpleParallaxVanilla.umd.js"
}
},
"scripts": {
"build": "npm run build:react && npm run build:vanilla",
"build:react": "vite build --mode react",
"build:vanilla": "vite build --mode vanilla",
"dev:react": "vite playground/react",
"dev:vanilla": "vite playground/vanilla --mode vanilla",
"lint": "eslint src/**/*.{ts,tsx,js} --fix"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.2",
"globals": "^15.3.0",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^4.6.4",
"typescript-eslint": "^7.12.0",
"vite": "^5.2.12",
"vite-plugin-dts": "^3.9.1"
}
}