-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "now-deno",
"description": "Community builder for using deno on the ZEIT Now platform",
"version": "0.5.0",
"license": "MIT",
"main": "./dist/index",
"homepage": "https://github.com/lucacasonato/now-deno",
"repository": {
"type": "git",
"url": "https://github.com/lucacasonato/now-deno.git"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"prepublishOnly": "tsc",
"typecheck": "tsc --noEmit"
},
"files": [
"dist"
],
"dependencies": {
"@types/command-exists": "^1.2.0",
"@types/which": "^1.3.2",
"@vercel/build-utils": "^2.5.1",
"acorn": "^8.0.1",
"command-exists": "^1.2.9",
"execa": "^4.0.3",
"fs-extra": "^9.0.1",
"vercel": "^20.1.0",
"which": "^2.0.2"
},
"devDependencies": {
"@types/execa": "^2.0.0",
"@types/fs-extra": "^9.0.1",
"ms": "^2.1.2",
"node-fetch": "^2.6.0",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
},
"prettier": {
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5"
}
}