-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 1.81 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
64
{
"name": "@collabland/example-hello-action",
"version": "0.0.1",
"description": "CollabLand Hello action",
"keywords": [
"CollabLand",
"Collab.Land",
"action",
"Discord",
"loopback"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "lb-tsc -b",
"build:watch": "lb-tsc -b --watch",
"build:full": "npm ci && npm run rebuild && npm run test:dev",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.md\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"pretest": "npm run build",
"test": "lb-mocha --config .mocharc.cjs --allow-console-logs \"dist/__tests__\"",
"rebuild": "npm run clean && npm run build",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"start": "npm run rebuild && node dist/server",
"server": "node dist/server DhF7T98EBmH1ZFmdGJvBhkmdn3BfAqc3tz8LxER8VH2q",
"client": "node dist/client"
},
"repository": {
"type": "git",
"url": "[email protected]:abridged/collabland-hello-action.git"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"dependencies": {
"@collabland/action": "^0.11.0",
"@collabland/common": "^0.50.0",
"@collabland/discord": "^0.29.0",
"@collabland/models": "^0.30.0",
"@loopback/core": "^5.1.0",
"@loopback/rest": "^13.1.0",
"discord-api-types": "^0.37.48",
"discord.js": "^14.11.0",
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/build": "^10.1.0",
"@loopback/eslint-config": "^14.0.1",
"@loopback/testlab": "^6.1.0",
"@types/node": "^18.11.15",
"typescript": "~5.7.0"
},
"copyright.owner": "Abridged, Inc.",
"author": "Abridged, Inc."
}