-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
61 lines (61 loc) · 1.67 KB
/
Copy pathdeno.json
File metadata and controls
61 lines (61 loc) · 1.67 KB
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
{
"name": "@streak-glue/runtime",
"version": "0.2.40",
"license": "MIT",
"exports": {
".": "./mod.ts",
"./backendTypes": "./backendTypes.ts"
},
"tasks": {
"test": "deno test -P",
"check": "deno check",
"lint": "deno lint",
"fmt": "deno fmt",
"deploy": {
"description": "Commits and pushes the current version to the remote",
"command": "git push && git push --tags",
"dependencies": [
"bump-patch"
]
},
"check-clean-git": "git diff --quiet HEAD || (echo 'Error: You have uncommitted changes to git-tracked files. Please commit or stash them before deploying.' && exit 1)",
"bump-patch": {
"command": "deno run --allow-read=deno.json --allow-write=deno.json --allow-run=git jsr:@kellnerd/bump@0.1.1 -c v -t v patch",
"dependencies": [
"check-clean-git"
]
}
},
"test": {
"permissions": {
"sys": true,
"env": [
"GLUE_DEV_PORT",
"GLUE_CLI_WS_ADDR"
],
"net": [
"127.0.0.1"
]
}
},
"minimumDependencyAge": {
"age": "P3D",
"exclude": []
},
"imports": {
"@googleapis/drive": "npm:@googleapis/drive@^20.0.0",
"@octokit/webhooks-types": "npm:@octokit/webhooks-types@^7.6.1",
"@std/assert": "jsr:@std/assert@1",
"@std/async": "jsr:@std/async@^1.0.15",
"hono": "jsr:@hono/hono@^4.7.4",
"stripe": "npm:stripe@^18.2.0",
"intercom-client": "npm:intercom-client@^7.0.3",
"@notionhq/client": "npm:@notionhq/client@^5.22.0",
"zod": "npm:zod@^4.3.6",
"@slack/types": "npm:@slack/types@^2.17.0",
"@slack/web-api": "npm:@slack/web-api@^7.11.0"
},
"fmt": {
"lineWidth": 100
}
}