-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "rollup-plugin-manifest-json",
"version": "1.7.0",
"description": "Rollup plugin to generate a manifest.json file used to tell the browser about your web app.",
"main": "lib/rollup-plugin-manifest-json.cjs.js",
"scripts": {
"test": "mocha",
"pretest": "yarn build",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamzerella/rollup-plugin-manifest-json.git"
},
"keywords": [
"rollup-plugin",
"plugin",
"manifest.json",
"manifest",
"pwa"
],
"author": "Adam Zerella <[email protected]> (https://azerel.la)",
"license": "MIT",
"bugs": {
"url": "https://github.com/azerella/rollup-plugin-manifest-json/issues"
},
"homepage": "https://github.com/azerella/rollup-plugin-manifest-json#readme",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-typescript": "^8.4.0",
"@types/node": "^18.7.11",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.78.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"files": [
"lib/rollup-plugin-manifest-json.cjs.js",
"lib/types.d.ts",
"lib/plugin.d.ts"
],
"types": "lib/plugin.d.ts",
"type": "commonjs"
}