-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 977 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
34
35
36
37
38
39
{
"name": "esbuild-os-notifier",
"version": "1.1.1",
"description": "Esbuild OS Notification Plugin",
"main": "dist/index.js",
"repository": "https://danielperez9430@github.com/danielperez9430/esbuild-os-notifier.git",
"author": "danielperez9430",
"license": "MIT",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"keywords": [
"esbuild",
"plugin",
"os",
"notification"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup --config",
"postbuild": "cp -r ./src/assets ./dist"
},
"dependencies": {
"deepmerge": "^4.2.2",
"esbuild": "^0.17.19",
"node-notifier": "^10.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/node-notifier": "^8.0.2",
"rollup": "^2.79.1",
"tslib": "^2.6.3",
"typescript": "^4.8.3"
}
}