-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 1.19 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
{
"name": "bsky-exploits",
"version": "1.0.0",
"author": {
"name": "Jason Parker",
"email": "north@ꩰ.com"
},
"main": "./dist/index.js",
"description": "Exploit framework for Bluesky. See README.md for full list of exploits.",
"repository": "https://github.com/qwell/bsky-exploits",
"license": "GPLv3",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean && rimraf --glob './dist/' ./.cache",
"start": "node ./dist/index.js",
"lint": "eslint --cache --cache-strategy metadata --cache-location ./.cache/eslint ./src/",
"format": "prettier --write --cache --cache-strategy metadata --cache-location ./.cache/prettier ./src/"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^20.6.0",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@yarnpkg/sdks": "^3.0.0-rc.50",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"yargs": "^17.7.2"
}
}