twitter-api-browser-js 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/package.json +35 -0
package/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Twitter Api Browser for JavaScript
|
|
2
|
+
This is JavaScript version of [fa0311/twitter_api_browser_python](https://github.com/fa0311/twitter_api_browser_python);
|
|
3
|
+
Look [example.ts](./example.ts);
|
|
4
|
+
|
|
5
|
+
<img width="890" height="234" alt="image" src="https://github.com/user-attachments/assets/768a3524-5b2a-463d-b06c-cd39cdbb4f72" />
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "twitter-api-browser-js",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"import": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@evex/loose-types": "npm:@jsr/evex__loose-types@^1.0.1",
|
|
13
|
+
"playwright": "^1.57.0",
|
|
14
|
+
"twitter-openapi-typescript-generated": "^0.0.38"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@types/node": "^20.0.0",
|
|
18
|
+
"tsx": "^4.7.0",
|
|
19
|
+
"typescript": "^5.3.0"
|
|
20
|
+
},
|
|
21
|
+
"imports": {
|
|
22
|
+
"@evex/loose-types": "jsr:@evex/loose-types@^1.0.1"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"test": "tsx --test testing/**/*.test.ts",
|
|
32
|
+
"example": "tsx example.ts",
|
|
33
|
+
"build": "tsc"
|
|
34
|
+
}
|
|
35
|
+
}
|