-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 966 Bytes
/
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
{
"name": "focus-panel",
"version": "0.1.5",
"description": "An HTML element that keeps the contents filling the container, but with a configurable focus point",
"main": "dist/focus-panel.cjs.js",
"types": "dist/focus-panel.d.ts",
"module": "dist/focus-panel.esm.js",
"browser": "dist/focus-panel.js",
"unpkg": "dist/focus-panel.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/nordprojects/focus-panel"
},
"author": "Joe Rickerby",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/hyperscript": "0.0.4",
"rollup": "^3.12.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^4.9.4"
},
"dependencies": {
"hyperscript": "^2.0.2"
}
}