-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "rollup-plugin-dev",
"version": "2.0.5",
"description": "a development server for rollup",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"imports": {
"#init": "./src/init.js",
"#config": "./config.js",
"#plugin": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/pearofducks/rollup-plugin-dev"
},
"scripts": {
"example:proxy": "cd examples/proxy && rollup -w -c",
"example:spa": "cd examples/spa && rollup -w -c",
"example:path": "cd examples/spa-with-path && rollup -w -c",
"build": "rollup -c",
"preversion": "npm run lint && npm run build",
"version": "npm publish",
"postversion": "git push --follow-tags",
"lint": "eslint --ignore-path .gitignore --ext .js .",
"test": "node test"
},
"files": [
"dist/",
"types/"
],
"keywords": [
"rollup",
"development",
"static",
"proxy",
"server"
],
"author": "Dave Honneffer <[email protected]>",
"license": "MIT",
"dependencies": {
"@fastify/http-proxy": "^7.0.0",
"@fastify/static": "^5.0.0",
"date-time": "^4.0.0",
"fastify": "^3.28.0",
"fastify-plugin": "^3.0.1",
"fastify-request-timing": "^2.0.1",
"femtocolor": "^2.0.2",
"get-port": "^5.1.1",
"joi": "^17.4.2",
"ms": "^2.1.3"
},
"devDependencies": {
"drnm": "^0.9.0",
"eslint": "^8.14.0",
"rollup": "^2.70.2",
"uvu": "^0.5.2"
}
}