-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "@supadata/js",
"version": "1.0.5",
"description": "TypeScript / JavaScript SDK for Supadata API",
"homepage": "https://supadata.ai",
"repository": "https://github.com/supadata-ai/js",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepare": "npm run build",
"format": "prettier --write \"src/**/*.{js,ts}\"",
"format:check": "prettier --check \"src/**/*.{js,ts}\""
},
"files": [
"dist",
"README.md"
],
"keywords": [
"supadata",
"api",
"sdk",
"typescript",
"youtube",
"transcript",
"web scraping"
],
"author": "Supadata AI",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"tsup": "^8.3.6"
}
}