-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.06 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
{
"name": "twittxr",
"version": "0.7.2",
"description": "Extract information from Twitter using the Syndication API.",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.cjs"
},
"scripts": {
"prepublishOnly": "bun run ci",
"test-dist": "node src/tests/test.js",
"test": "vitest run --config vitest.config.ts",
"coverage": "vitest run --coverage",
"clean": "rimraf dist",
"build": "bun run clean && rollup -c && bun run dts",
"dts": "tsc --declaration true --emitDeclarationOnly true --declarationMap true",
"lint": "eslint .",
"ci": "bun run lint && bun run test && bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Owen3H/twittxr.git"
},
"keywords": [
"twitter",
"tweet",
"xdotcom",
"api-wrapper",
"twitter-api",
"syndication",
"scraper",
"typescript",
"puppeteer"
],
"author": "Owen3H",
"license": "MIT",
"bugs": {
"url": "https://github.com/Owen3H/twittxr/issues"
},
"homepage": "https://github.com/Owen3H/twittxr#readme",
"dependencies": {
"tslib": "latest",
"undici-shim": "latest"
},
"peerDependencies": {
"puppeteer": ">=16"
},
"peerDependenciesMeta": {
"puppeteer": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-named-import-spacing": "^1.0.3",
"puppeteer": "^22.12.0",
"rimraf": "^5.0.7",
"rollup": "^3.29.4",
"rollup-plugin-esbuild": "^5.0.0",
"typescript": "^5.5.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "1.6.0"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md",
"package.json"
],
"engines": {
"node": ">=10"
}
}