-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@gonetone/get-youtube-id-by-url",
"version": "2.0.0",
"description": "Get YouTube channel or video id by url!",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist",
"README*.md"
],
"scripts": {
"build": "tsup",
"build:dev": "tsup --watch",
"test": "tsup && NODE_OPTIONS=--experimental-vm-modules jest",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/GoneToneStudio/node-get-youtube-id-by-url.git"
},
"keywords": [
"youtube",
"youtube id",
"youtube channel id",
"youtube video id",
"get youtube id",
"get youtube channel id",
"get youtube video id",
"youtube url",
"google"
],
"author": {
"name": "張文相 Wenxiang Zhang (旋風之音 GoneTone)",
"email": "p29022716@gmail.com",
"url": "https://github.com/GoneTone"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GoneToneStudio/node-get-youtube-id-by-url/issues"
},
"homepage": "https://github.com/GoneToneStudio/node-get-youtube-id-by-url",
"dependencies": {
"axios": "^1.7.2",
"cheerio": "^1.0.0-rc.12",
"tslib": "^2.6.3"
},
"devDependencies": {
"@types/node": "^20.14.2",
"jest": "^29.7.0",
"prettier": "3.3.2",
"ts-jest": "^29.1.4",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=12.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.3.0"
}