-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "astro-framework7",
"description": "Open source framework to develop mobile, desktop or web apps with native look and feel.",
"version": "0.0.2",
"scripts": {
"build": "tsc",
"typecheck": "tsc --declaration --emitDeclarationOnly",
"release": "bumpp && npm publish"
},
"type": "module",
"types": "dist/index.d.ts",
"author": "grenovales",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grenovles/astro-framework7.git"
},
"keywords": [
"astro",
"astro-component",
"astro-integration",
"withastro",
"framework7"
],
"bugs": "https://github.com/grenovales/astro-framework7/issues",
"homepage": "https://github.com/grenovales/astro-framework7",
"files": [
"dist"
],
"main": "./dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
}
}
},
"devDependencies": {
"astro": "^4.14.4",
"bumpp": "^9.5.1",
"framework7": "^8.3.3",
"typescript": "^5.5.4"
},
"peerDependencies": {
"astro": "^4.14.4",
"framework7": "^8.3.3"
}
}