-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 2.7 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
{
"name": "@book000/twitterts",
"version": "0.0.0",
"description": "Twitter Unofficial Scraping API Library for TypeScript",
"homepage": "https://www.npmjs.com/package/@book000/twitterts",
"bugs": {
"url": "https://github.com/book000/twitterts/issues"
},
"license": "MIT",
"author": "Tomachi <[email protected]>",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:book000/twitterts.git",
"scripts": {
"build": "run-z clean ctix compile generate-docs",
"generate-types": "tsx ./src/generate-types.ts",
"generate-schema": "tsx ./src/generate-schema.ts",
"save-responses": "tsx ./src/save-responses.ts",
"migrate-saved-response": "tsx ./src/migrate-saved-response.ts",
"clean": "rimraf dist output docs",
"compile": "tsc -p tsconfig.build.json",
"ctix": "ctix single -w --noBackup -o src -s false",
"generate-docs": "typedoc --gitRevision master src/index.ts",
"fix": "run-z fix:prettier fix:eslint ctix",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"fix:prettier": "prettier --write src",
"test": "jest --runInBand --passWithNoTests --detectOpenHandles --forceExit",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"lint:eslint": "eslint . -c eslint.config.mjs",
"lint:prettier": "prettier --check src",
"lint:tsc": "tsc",
"prepare": "run-z build",
"prepublishOnly": "run-z lint"
},
"dependencies": {
"@book000/node-utils": "1.13.382",
"genson-js": "0.0.8",
"json-schema-to-typescript": "15.0.3",
"json-stable-stringify": "1.1.1",
"mysql2": "3.11.5",
"otplib": "12.0.1",
"puppeteer-core": "23.9.0",
"twitter-d": "0.6.0",
"ulid": "2.3.0"
},
"devDependencies": {
"@book000/eslint-config": "1.7.78",
"@types/jest": "29.5.14",
"@types/json-stable-stringify": "1.1.0",
"@types/node": "22.10.1",
"ctix": "2.7.0",
"eslint": "9.14.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.14.0",
"eslint-plugin-promise": "7.2.1",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-expect-message": "1.1.3",
"jsonc-parser": "3.3.1",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"run-z": "2.1.0",
"ts-jest": "29.2.5",
"tsx": "4.19.2",
"typedoc": "0.27.2",
"typescript": "5.7.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
".+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/*.test.ts"
],
"setupFilesAfterEnv": [
"jest-expect-message"
]
},
"packageManager": "[email protected]"
}