-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 986 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
40
41
42
43
44
45
46
47
48
49
{
"name": "bud-localtunnel",
"version": "0.0.2",
"description": "Forward `bud dev` to the web with localtunnel",
"main": "index.js",
"repository": "https://github.com/talss89/bud-localtunnel",
"contributors": [
{
"email": "tom.lawton@cndu.it",
"name": "Tom Lawton",
"url": "https://github.com/talss89"
}
],
"license": "MIT",
"type": "module",
"exports": {
".": "./lib/index.js",
"./types": "./lib/types.js"
},
"typesVersions": {
"*": {
".": [
"./lib/index.js"
],
"types": [
"./lib/types.js"
]
}
},
"types": "./lib/index.d.ts",
"module": "./lib/index.js",
"files": [
"lib",
"src"
],
"devDependencies": {
"@roots/bud": "^6.16.1",
"@roots/bud-framework": "^6.16.1",
"@roots/bud-postcss": "^6.16.1",
"@types/node": "18.17.9",
"tslib": "2.6.2"
},
"dependencies": {
"localtunnel": "^2.0.2"
},
"bud": {
"version": ">=6.16.0"
}
}