-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 993 Bytes
/
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
{
"name": "@eliottoblinger/vinted",
"version": "1.1.0",
"description": "A simple npm package to interact with Vinted.",
"repository": {
"type": "git",
"url": "https://github.com/eliottoblinger/vinted"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"vinted",
"javascript",
"typescript",
"nodejs",
"bot",
"api"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest"
},
"author": "Eliott Oblinger",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^8.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/user-agents": "^1.0.4",
"puppeteer": "^21.5.2",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"user-agents": "^1.1.29"
}
}