-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 920 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 920 Bytes
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
{
"name": "astro-integration",
"version": "0.0.1",
"description": "Astro integration",
"keywords": ["astro", "withastro", "astro-component", "astro-integration"],
"author": "Shinya Fujino <shf0811@gmail.com> (https://github.com/morinokami)",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/morinokami/astro-integration-template.git",
"directory": "packages/astro-integration"
},
"bugs": {
"url": "https://github.com/morinokami/astro-integration-template/issues"
},
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"astro": "5.15.9",
"publint": "0.3.12",
"tsdown": "0.14.2",
"typescript": "5.9.2"
},
"peerDependencies": {
"astro": ">=5.0.0"
}
}