-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 KB
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": "@ascorbic/youtube-loader",
"version": "0.0.2",
"description": "Astro loader for YouTube videos with build-time and live loading capabilities",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean",
"dev": "tsup src/index.ts --format esm --dts --watch",
"prepublishOnly": "node --run build",
"check": "publint && attw --pack --ignore-rules=cjs-resolves-to-esm",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"astro": "^5.10.1",
"msw": "^2.10.2",
"publint": "^0.3.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"peerDependencies": {
"astro": "^4.14.0 || ^5.0.0"
},
"keywords": [
"withastro",
"astro-loader",
"youtube",
"video",
"content-collections"
],
"author": "Matt Kane",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com:ascorbic/astro-loaders.git",
"directory": "packages/youtube"
},
"homepage": "https://github.com/ascorbic/astro-loaders",
"dependencies": {
"@ascorbic/loader-utils": "workspace:^",
"zod": "^3.24.1"
}
}