-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
77 lines (77 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "scrolly-video",
"version": "0.0.24",
"description": "A component for scroll-based (or other externally controlled) playback.",
"main": "dist/scrolly-video.js",
"types": "dist/ScrollyVideo.d.ts",
"scripts": {
"dev": "DOCS_SITE=true rollup -c -w",
"build": "rimraf dist && rollup -c",
"build-docs": "rimraf build && DOCS_SITE=true rollup -c",
"postbuild": "tsc",
"start": "sirv build",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"postpublish": "zip -j dist/scrolly-video.zip -- LICENSE README.md dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dkaoster/scrolly-video.git"
},
"keywords": [
"scroll",
"scrollytelling",
"video",
"svelte",
"react",
"vue"
],
"author": "Daniel Kao",
"license": "MIT",
"bugs": {
"url": "https://github.com/dkaoster/scrolly-video/issues"
},
"homepage": "https://github.com/dkaoster/scrolly-video#readme",
"dependencies": {
"mp4box": "^0.4.9",
"ua-parser-js": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@vue/compiler-sfc": "^3.2.45",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-svelte": "^2.43.0",
"prettier": "^3.2.4",
"rimraf": "^3.0.2",
"rollup": "^2.46.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.2.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"sirv-cli": "^2.0.2",
"svelte": "^4.2.19",
"svelte-markdown": "^0.4.1",
"svelte-preprocess": "^6.0.2",
"typescript": "^5.5.4"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80,
"tabWidth": 2,
"useTabs": false
}
}