-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "@rajnandan1/ruto",
"version": "1.0.1",
"description": "Ruto is a lightweight(4KB), fast and easy-to-use JS library that streamlines the communication between parent and child window(iframe/popup).",
"type": "module",
"main": "dist/ruto.min.js",
"module": "dist/ruto.esm.js",
"exports": {
".": {
"import": "./dist/ruto.esm.js",
"require": "./dist/ruto.min.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup --bundleConfigAsCjs -c rollup.config.js",
"prettify": "prettier --write ."
},
"keywords": [
"ruto",
"postMessage",
"iframe",
"popup",
"promise",
"rajnandan",
"library"
],
"author": "Raj Nandan Sharma <rajnandan1@gmail.com> (https://www.rajnandan.com)",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"prettier": "^3.2.5",
"rollup": "^4.18.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}