-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "@big-whale-labs/botcaster",
"version": "0.0.33",
"description": "Farcaster bot framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/BigWhaleLabs/botcaster",
"author": "backmeupplz <[email protected]>",
"prettier": "@big-whale-labs/prettier-config",
"license": "MIT",
"files": [
"dist"
],
"np": {
"2fa": false,
"tests": false,
"cleanup": false,
"yarn": false
},
"scripts": {
"release": "np --no-tests",
"build": "tsc --skipLibCheck",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 --ext ts,tsx,json src",
"prepublishOnly": "yarn lint && yarn build"
},
"dependencies": {
"@neynar/nodejs-sdk": "^1.66.0",
"node-persist": "^4.0.3"
},
"devDependencies": {
"@big-whale-labs/bwl-eslint-backend": "^1.0.6",
"@big-whale-labs/prettier-config": "^1.1.3",
"@rushstack/eslint-patch": "^1.10.4",
"@types/node": "^22.8.1",
"@types/node-persist": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"module-alias": "^2.2.3",
"np": "^10.0.7",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}