-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.26 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
78
79
80
81
82
{
"name": "comparable-video-viewer",
"version": "0.1.0",
"author": "H.John Choi <[email protected]>",
"description": "React Component for compare original and filtered Video",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hodoolab/comparable-video-viewer.git"
},
"homepage": "https://comparable-video-viewer.pages.dev",
"keywords": [
"react",
"react-dom",
"video"
],
"bugs": {
"url": "https://github.com/hodoolab/comparable-video-viewer/issues"
},
"main": "dist/index.js",
"module": "dist/comparable-video-viewer.esm.js",
"typings": "dist/comparable-video-viewer.esm.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"clean": "rm -rf lib && rm -rf dist",
"tsc": "tsc",
"build": "yarn clean && tsc && tsdx build --format cjs,esm,umd",
"watch": "yarn clean && tsdx watch",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint",
"start-demo": "cd example && yarn start",
"build-demo": "cd example && yarn build",
"push-gh-pages": "push-dir --dir=./example/dist --branch=gh-pages --cleanup --verbose"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^26.0.20",
"@types/offscreencanvas": "^2019.6.2",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/resize-observer-browser": "^0.1.5",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"husky": "^5.1.3",
"prettier": "^2.2.1",
"push-dir": "^0.4.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-visualizer": "^4.2.0",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"dependencies": {
"Utils": "^1.0.39",
"hoist-non-react-statics": "^3.3.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src"
}
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"jsxSingleQuote": true
}
}