forked from kolchurinvv/svelte-adapter-bun-kvv
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "@catdadcode/svelte-adapter-bun",
"version": "0.5.7",
"description": "Adapter for SvelteKit apps that generates a standalone Bun.js server.",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
},
"./package.json": "./package.json"
},
"files": [
"files",
"index.d.ts"
],
"scripts": {
"build": "rm -fr files && bun run build.js",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepublish": "bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catdadcode/svelte-adapter-bun.git"
},
"keywords": [
"svelte",
"sveltekit",
"sveltekit-adapter",
"bun"
],
"author": "Alex Ford <@catdadcode>",
"license": "MIT",
"bugs": {
"url": "https://github.com/catdadcode/svelte-adapter-bun/issues"
},
"homepage": "https://github.com/catdadcode/svelte-adapter-bun#readme",
"devDependencies": {
"@sveltejs/kit": "^1.27.3",
"bun-types": "^1.0.9",
"mrmime": "^1.0.1",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.1.2",
"totalist": "^3.0.1"
},
"dependencies": {
"tiny-glob": "^0.2.9"
}
}