-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "@fluffylabs/bot",
"version": "1.0.0",
"private": true,
"description": "FluffyLabs Github bot",
"author": "Tomek Drwięga",
"license": "ISC",
"homepage": "https://github.com//",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "probot run ./lib/src/index.js",
"start-prod": "probot run ./lib/src/index.js",
"dev": "npm run build && npm start",
"send-tip": "npm run build && node ./lib/scripts/send-tip.js",
"test": "vitest --run",
"test-watch": "vitest",
"lint": "tsc --noEmit",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@polkadot-api/descriptors": "file:.papi/descriptors",
"@polkadot-api/known-chains": "^0.9.12",
"@polkadot-api/signer": "^0.2.2",
"@polkadot-api/substrate-bindings": "^0.16.4",
"@polkadot-api/substrate-client": "^0.4.4",
"@polkadot/util": "^13.5.6",
"@polkadot/util-crypto": "^13.5.5",
"polkadot-api": "^1.16.4",
"probot": "^14.1.0",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@octokit/types": "^15.0.0",
"@types/node": "^24.7.2",
"nock": "^14.0.10",
"smee-client": "^4.3.1",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">= 18"
},
"type": "module"
}