-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "zulip-openai",
"version": "1.0.0",
"description": "Zulip/OpenAI chatbots, powered by Supabase.",
"scripts": {
"typecheck": "tsc --noEmit",
"js:eslint": "eslint ./ --ext .ts",
"js:prettier": "prettier './'",
"lint": "concurrently 'npm:typecheck' 'npm:js:eslint' 'npm:js:prettier -- --check' --raw",
"format": "concurrently 'npm:js:eslint -- --fix' 'npm:js:prettier -- --write' --max-processes 1 --raw",
"test": "concurrently 'npm:js:lint' 'npm:js:format'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rasben/openai-zulip.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/rasben/openai-zulip/issues"
},
"homepage": "https://github.com/rasben/openai-zulip#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"concurrently": "^8.0.1",
"eslint": "^8.37.0",
"prettier": "^2.8.7"
},
"dependencies": {
"@tsconfig/deno": "^1.0.7"
}
}