-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "fullscreen-wrapper",
"version": "1.1.3",
"description": "Light Wrapper for FullScreen API for cross-browser supports",
"main": "dist/fullscreen.min.js",
"types": "dist/fullscreen.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"build:js": "rollup -c rollup.config.js --bundleConfigAsCjs",
"build:minjs": "terser ./dist/fullscreen.js --compress --mangle > ./dist/fullscreen.min.js",
"build": "npm run clean && npm run build:js -s && npm run build:minjs",
"format": "prettier --write ."
},
"funding": "https://www.patreon.com/PresentKim",
"repository": {
"type": "git",
"url": "git+https://github.com/PresentKim/fullscreen-wrapper.git"
},
"keywords": [
"html",
"browser",
"polyfill",
"wrapper",
"fullscreen",
"typescript"
],
"author": "PresentKim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PresentKim/fullscreen-wrapper/issues"
},
"homepage": "https://github.com/PresentKim/fullscreen-wrapper",
"devDependencies": {
"@rollup/plugin-typescript": "^9.0.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^3.3.0",
"terser": "^5.15.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"packageManager": "[email protected]"
}