-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.32 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
{
"name": "scrollmagic",
"title": "ScrollMagic",
"version": "3.0.0-beta.5",
"description": "The lightweight library for magical scroll interactions.",
"type": "module",
"main": "./dist/scrollmagic.umd.js",
"module": "./dist/scrollmagic.esm.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/scrollmagic.esm.js",
"require": "./dist/scrollmagic.umd.js"
},
"./util": {
"types": "./dist/types/util.d.ts",
"import": "./dist/scrollmagic.util.esm.js",
"require": "./dist/scrollmagic.util.umd.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@vitest/browser-playwright": "^4.1.9",
"eslint": "^10.5.0",
"eslint-plugin-compat": "^7.0.2",
"gifenc": "^1.0.3",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"pngjs": "^7.0.0",
"prettier": "^3.8.4",
"rollup": "^4.62.2",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-delete": "^3.0.2",
"rollup-plugin-license": "^3.7.1",
"tslib": "^2.8.1",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.9"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "rollup -c",
"dev": "npm run build -- --watch",
"test": "npm run typecheck && vitest run",
"test:unit": "vitest run --project unit",
"test:e2e": "vitest run --project e2e",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"preversion": "npm run build && npm run test",
"prepublishOnly": "npm run build",
"docs:api": "typedoc",
"doces:export-diagrams": "node scripts/export-diagrams.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/janpaepke/ScrollMagic.git"
},
"author": {
"name": "Jan Paepke",
"url": "https://janpaepke.de",
"email": "e-mail@janpaepke.de"
},
"contributors": [
{}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/janpaepke/ScrollMagic/issues"
},
"homepage": "https://scrollmagic.io",
"browserslist": [
"Chrome >= 73",
"Firefox >= 69",
"Safari >= 13.1",
"Edge >= 79",
"iOS >= 13.4",
"Samsung >= 9.2",
"not dead"
]
}