-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 721 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 721 Bytes
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
{
"name": "@imperatrona/onlyfans-scraper",
"version": "1.0.5",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "npx tsc",
"test": "npx jest",
"deploy": "rm -rf ./dist && npx tsc && npm publish && rm -rf ./dist"
},
"files": [
"./dist"
],
"keywords": [],
"author": "Alex Tatianovich <xb2w1z@gmail.com>",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"hpagent": "^1.2.0"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.4",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}