-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 940 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 940 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
38
39
40
41
42
43
44
{
"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.mjs"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"astro": "5.16.6",
"publint": "0.3.16",
"tsdown": "0.21.7",
"typescript": "5.9.3"
},
"peerDependencies": {
"astro": ">=5.0.0"
}
}