-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.69 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "cage-cli",
"description": "realtime unfollower detection for any social services",
"version": "1.0.0-dev.19",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Sophia",
"email": "[email protected]",
"url": "https://github.com/async3619"
},
"scripts": {
"build": "tsc --project ./tsconfig.build.json && tsc-alias -p ./tsconfig.build.json",
"dev": "node -r ts-node/register -r dotenv/config -r tsconfig-paths/register ./src/index.ts",
"watch": "node --watch -r ts-node/register -r dotenv/config -r tsconfig-paths/register ./src/index.ts",
"semantic-release": "semantic-release",
"lint": "eslint \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"test": "jest",
"coverage": "jest --coverage",
"schema": "node -r ts-node/register -r dotenv/config -r tsconfig-paths/register ./scripts/generate-schema.ts",
"codegen": "graphql-codegen --config codegen.ts"
},
"bin": {
"cage": "./bin/cage.cjs"
},
"files": [
"dist",
"yarn.lock",
"bin",
"package.json"
],
"devDependencies": {
"@graphql-codegen/cli": "2.15.0",
"@graphql-codegen/typescript": "2.8.3",
"@graphql-codegen/typescript-operations": "^2.5.8",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.4",
"@types/listr": "^0.14.4",
"@types/lodash": "^4.14.191",
"@types/lodash.chunk": "^4.2.7",
"@types/node": "^18.11.10",
"@types/node-cron": "^3.0.6",
"@types/node-fetch": "^2.6.2",
"@types/pluralize": "^0.0.29",
"@types/prompts": "^2.0.14",
"@types/replace-ext": "^2.0.0",
"@types/set-cookie-parser": "^2.4.2",
"@types/update-notifier": "^6.0.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"dotenv": "^16.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-json-schema-generator": "^1.1.2",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.3"
},
"dependencies": {
"@atproto/api": "^0.3.13",
"@octokit/rest": "^19.0.5",
"@slack/webhook": "^6.1.0",
"@urql/core": "^3.0.5",
"ajv": "^8.11.2",
"better-ajv-errors": "^1.2.0",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"change-case": "^4.1.2",
"commander": "^9.4.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cronstrue": "^2.20.0",
"dayjs": "^1.11.6",
"fs-extra": "^11.1.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"instagram-private-api": "^1.46.1",
"lodash": "^4.17.21",
"masto": "^5.11.3",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.7",
"pluralize": "^8.0.0",
"pretty-ms": "^7.0.1",
"reflect-metadata": "^0.1.13",
"rettiwt-api": "^4.1.4",
"set-cookie-parser": "^2.5.1",
"sqlite3": "^5.1.2",
"strip-ansi": "^6.0.1",
"typeorm": "^0.3.10",
"update-notifier": "^5.1.0"
}
}