-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 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
{
"name": "@ascorbic/feed-loader",
"version": "2.0.1",
"description": "",
"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"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com:ascorbic/astro-loaders.git",
"directory": "packages/feed"
},
"homepage": "https://github.com/ascorbic/astro-loaders",
"dependencies": {
"@rowanmanning/feed-parser": "^2.0.0",
"@ascorbic/loader-utils": "workspace:^"
}
}