forked from smol/declaration-bundler-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
20 lines (20 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
{
"name": "types-webpack-bundler",
"version": "1.0.2",
"description": "This library takes separate declaration asset files generated by the webpack build process and bundles them into one single declaration file. However it does so by recomposing the separate declarations as if all the classes and interfaces were defined as an __internal module__. Therefor, using this plugin only makes sense if you expose the classes and interfaces to the global module space yourself.",
"main": "plugin.js",
"scripts": {
"build": "tsc",
"postversion": "git push --tags && yarn publish . --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\""
},
"author": "Royson <roysondsilva@gmail.com>",
"repository": "git@github.com:droyson/types-webpack-bundler.git",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"typescript": "^4.3.5"
},
"peerDependencies": {
"webpack": "^5.50.0"
}
}