-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"name": "lettuce-svelte-adapter-express",
"version": "1.0.0-next.1",
"repository": {
"type": "git",
"url": "https://git.rusondia.net/lettucebowler/adapter-express",
"directory": "."
},
"license": "MIT",
"homepage": "https://git.rusondia.net/lettucebowler/adapter-express",
"type": "module",
"exports": {
".": {
"import": "./index.js"
}
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"files",
"index.d.ts"
],
"scripts": {
"dev": "rimraf files && rollup -cw",
"build": "rimraf files && rollup -c",
"test": "echo \"tests temporarily disabled\" # c8 uvu tests",
"check": "tsc",
"lint": "eslint --ignore-path .gitignore \"**/*.{ts,js,svelte}\" && npm run check-format",
"format": "npm run check-format -- --write",
"check-format": "prettier --check . --config .prettierrc --ignore-path .gitignore",
"prepublishOnly": "npm run build"
},
"dependencies": {
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@sveltejs/eslint-config": "github:sveltejs/eslint-config#v5.8.0",
"@sveltejs/kit": "next",
"@types/compression": "^1.7.2",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint-plugin-node": "^11.1.0",
"c8": "^7.11.0",
"compression": "^1.7.4",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-svelte3": "^3.2.1",
"express": "^4.17.3",
"install-fetch": "link:@sveltejs/kit/install-fetch",
"node-fetch": "^3.2.2",
"polka": "^1.0.0-next.22",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.0",
"sirv": "^2.0.2",
"svelte": "^3.46.4",
"typescript": "^4.6.2",
"uvu": "^0.5.3"
}
}