generated from egoist/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 950 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
{
"name": "follower-count",
"version": "0.5.0",
"description": "Get follower count for Instagram, Twitter, TikTok, Youtube accounts",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "pnpm run build-fast -- --dts-resolve",
"test": "vitest run",
"prepublishOnly": "pnpm run build"
},
"license": "MIT",
"devDependencies": {
"@egoist/prettier-config": "1.0.0",
"@types/node": "17.0.21",
"kanpai": "0.10.1",
"node-fetch": "^3.2.4",
"prettier": "2.6.2",
"tsup": "5.12.5",
"typescript": "4.6.3",
"vitest": "0.9.3"
},
"dependencies": {
"playwright-core": "^1.20.0",
"yt-channel-info": "^3.0.3"
}
}