-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 892 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
{
"name": "@rynpsc/dialog",
"description": "A modern, lightweight and accessible dialog with a focus on progressive enhancement",
"version": "5.0.2",
"main": "dist/commonjs/dialog.js",
"module": "dist/module/dialog.js",
"unpkg": "dist/umd/dialog.js",
"types": "dist/types/index.d.ts",
"author": "Ryan Pascoe",
"license": "MIT",
"repository": "github:rynpsc/dialog",
"files": [
"dist"
],
"keywords": [],
"scripts": {
"dev": "rimraf dist && rollup -c -w",
"build": "rimraf dist && rollup -c --environment BUILD:production && tsc --declaration --emitDeclarationOnly",
"prepare": "npm run build"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.52.7",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@rynpsc/focus-trap": "^3.0.3"
}
}