-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1 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
{
"name": "inner-vh",
"version": "2.1.2",
"description": "Browser ui aware vh.",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/FilipChalupa/inner-vh.git"
},
"keywords": [
"custom properties",
"innerHeight",
"vh",
"browser ui"
],
"author": {
"name": "Filip Chalupa",
"email": "[email protected]",
"url": "https://www.npmjs.com/~onset"
},
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"prettier": "^2.1.2",
"rollup": "^2.33.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.0.5"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true,
"arrowParens": "always"
},
"files": [
"/dist/"
]
}