-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
51 lines (51 loc) · 1.14 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
{
"name": "rollup-plugin-serve",
"version": "3.0.0",
"description": "Serve your rolled up bundle",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"default": "./dist/index.cjs"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -cw",
"lint": "standard --fix rollup.config.js src/**",
"prepare": "yarn lint && yarn build",
"test": "cd test && rollup -cw || cd .."
},
"keywords": [
"rollup",
"rollup-plugin",
"serve",
"dev-server",
"static"
],
"license": "MIT",
"author": "Thomas Ghysels <info@thomasg.be>",
"homepage": "https://github.com/thgh/rollup-plugin-serve",
"bugs": {
"url": "https://github.com/thgh/rollup-plugin-serve/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thgh/rollup-plugin-serve"
},
"files": [
"dist",
"index.d.ts"
],
"type": "module",
"dependencies": {
"mime": "^4",
"opener": "1"
},
"devDependencies": {
"@rollup/plugin-buble": "^1.0.0",
"@types/node": "^20.10.1",
"rollup": "4",
"standard": "17"
}
}