-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
{
"name": "perspective.js",
"version": "2.0.1",
"description": "Parallax scrolling effect. And more.",
"type": "module",
"main": "dist/perspective.cjs.js",
"module": "dist/perspective.es.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/perspective.es.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/perspective.cjs.js"
}
}
},
"files": [
"dist"
],
"sideEffects": false,
"unpkg": "dist/perspective.umd.js",
"jsdelivr": "dist/perspective.umd.js",
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"dev": "vite serve docs/examples",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"test": "vitest run",
"dist": "pnpm run typecheck && pnpm run build",
"build:site": "vite build docs/examples --outDir ../../dist-site/examples --emptyOutDir --base /examples/ && cp -r docs/index.html docs/index.css docs/CNAME docs/md dist-site/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leopoldthecoder/Perspective.git"
},
"keywords": [
"parallax",
"scrolling"
],
"author": "leopoldthecuber@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/Leopoldthecoder/Perspective/issues"
},
"homepage": "https://github.com/Leopoldthecoder/Perspective#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"provenance": true
},
"packageManager": "pnpm@10.30.0",
"engines": {
"node": ">=22"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.0",
"jsdom": "^28.1.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}