-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 974 Bytes
/
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
{
"name": "astro-localization",
"type": "module",
"version": "0.0.7",
"description": "Localization utils for astro",
"homepage": "https://github.com/warpsio/astro-localization",
"bugs": {
"url": "https://github.com/warpsio/astro-localization/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/warpsio/astro-localization"
},
"files": [
"src/index.js",
"src/LanguageSwitcher.astro",
"src/Translate.astro"
],
"exports": "./src/index.js",
"keywords": [
"astro-component",
"astro",
"astro localization",
"astro-localization"
],
"author": "Giulio Zanchetta",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"preview": "astro preview",
"format": "yarn prettier -w ./src",
"release": "standard-version"
},
"devDependencies": {
"astro": "^1.1.1",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.5.3",
"sass": "^1.54.5",
"standard-version": "^9.5.0"
},
"dependencies": {
"astro-icon": "^0.7.3"
}
}