-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "cinematic-effect",
"version": "1.1.0",
"description": "Generates a dynamic background based on the colors of a video",
"main": "./dist/cinematic.umd.js",
"module": "./dist/cinematic.mjs",
"exports": {
".": {
"import": "./dist/cinematic.mjs",
"require": "./dist/cinematic.umd.js"
}
},
"author": "Simon Reinisch <[email protected]>",
"bugs": "https://github.com/Simonwep/cinematic/issues",
"homepage": "https://github.com/Simonwep/cinematic#readme",
"repository": "git+https://github.com/Simonwep/cinematic.git",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"build:demo": "tsc --noEmit && cd demo && vite build",
"lint": "eslint '{src,demo/src}/**/*.{js,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"test:ci": "npm run lint:fix && npm run build && npm run build:demo"
},
"files": [
"dist",
"src"
],
"keywords": [
"video",
"dynamic",
"background",
"cinematics",
"cinematic"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-banner": "^0.6.1"
}
}