-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.52 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
101
102
103
104
105
106
107
108
109
110
{
"name": "jarallax",
"version": "3.1.0",
"description": "Smooth parallax scrolling effect for background images, videos and inline elements. Code in pure JavaScript with NO dependencies + jQuery supported. Youtube, Vimeo and Local Videos parallax supported.",
"license": "MIT",
"homepage": "https://github.com/nk-o/jarallax",
"author": "nK <https://nkdev.info>",
"main": "dist/jarallax.cjs",
"module": "dist/jarallax.esm.js",
"unpkg": "dist/jarallax.min.js",
"style": "dist/jarallax.css",
"types": "./dist/types/src/public-api.d.ts",
"exports": {
".": {
"types": "./dist/types/src/public-api.d.ts",
"import": "./dist/jarallax.esm.js",
"require": "./dist/jarallax.cjs",
"default": "./dist/jarallax.esm.js"
},
"./react": {
"types": "./dist/types/src/react/index.d.ts",
"import": "./dist/react/index.js",
"default": "./dist/react/index.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*",
"./src/*": "./src/*",
"./typings": "./typings/index.d.ts",
"./typings/*": "./typings/*",
"./jarallax.cjs": "./dist/jarallax.cjs",
"./jarallax.esm.js": "./dist/jarallax.esm.js",
"./jarallax.esm.min.js": "./dist/jarallax.esm.min.js",
"./jarallax.js": "./dist/jarallax.js",
"./jarallax.min.js": "./dist/jarallax.min.js",
"./jarallax.css": "./dist/jarallax.css",
"./jarallax.min.css": "./dist/jarallax.min.css",
"./jarallax-video.js": "./dist/jarallax-video.js",
"./jarallax-video.min.js": "./dist/jarallax-video.min.js",
"./jarallax-element.js": "./dist/jarallax-element.js",
"./jarallax-element.min.js": "./dist/jarallax-element.min.js"
},
"files": [
"src",
"dist",
"typings"
],
"scripts": {
"dev": "cross-env NODE_ENV=dev rollup --config --sourcemap --watch",
"build": "rollup --config --sourcemap && tsc -p tsconfig.build.json --pretty false",
"typecheck": "tsc -p tsconfig.json --pretty false && tsc -p tsconfig.tests.json --pretty false",
"typecheck:build": "tsc -p tsconfig.build.json --pretty false",
"test": "vitest",
"test:run": "vitest run",
"test:artifacts": "vitest run tests/package-artifacts.test.js",
"test:coverage": "vitest run --coverage",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git://github.com/nk-o/jarallax.git"
},
"bugs": {
"url": "https://github.com/nk-o/jarallax/issues"
},
"keywords": [
"parallax",
"image",
"background",
"youtube",
"vimeo",
"video"
],
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@types/jquery": "^4.0.1",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.8",
"clean-css": "^5.3.3",
"cross-env": "^10.1.0",
"husky": "^9.1.7",
"jquery": "^4.0.0",
"jsdom": "^29.1.1",
"json-file": "^0.1.0",
"lint-staged": "^16.4.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"rollup": "^4.61.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-serve": "^3.0.0",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"video-worker": "^3.1.0"
}
}