-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
49
50
51
52
53
{
"type": "module",
"name": "@hazae41/worker-online-polyfill",
"version": "1.0.0",
"description": "Polyfill for online and offline events on WebWorkers",
"homepage": "https://github.com/hazae41/worker-online-polyfill",
"repository": "github:hazae41/worker-online-polyfill",
"author": "hazae41",
"license": "MIT",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"sideEffects": true,
"files": [
"./dist/esm",
"./dist/cjs",
"./dist/types"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"test": "node ./dist/test/index.test.mjs",
"prepare": "npm run build"
},
"devDependencies": {
"@hazae41/phobos": "^1.0.10",
"@rollup/plugin-typescript": "^11.1.3",
"@types/node": "^20.5.9",
"rimraf": "^5.0.1",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^6.0.1",
"rollup-plugin-node-externals": "^6.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
}
},
"keywords": [
"polyfill",
"online",
"offline",
"events",
"listeners",
"typescript",
"esmodules",
"tested",
"unit-tested"
]
}