-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
81 lines (81 loc) · 1.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "astro-i18n-aut",
"version": "0.7.3",
"private": false,
"description": "The i18n integration for Astro 🧑🚀",
"keywords": [
"astro-i18n-aut",
"astro",
"astrojs",
"withastro",
"astro-integration",
"astro-component",
"i18n",
"locales",
"defaultLocale",
"languages",
"defaultLanguage",
"defaultLang"
],
"homepage": "https://github.com/jlarmstrongiv/astro-i18n-aut/#readme",
"bugs": "https://github.com/jlarmstrongiv/astro-i18n-aut/issues",
"repository": "https://github.com/jlarmstrongiv/astro-i18n-aut.git",
"license": "MIT",
"author": "John L. Armstrong IV",
"sideEffects": false,
"type": "module",
"typesVersions": {
"*": {
"*": [
"./dist/edge-runtime/index.d.ts"
],
"integration": [
"./dist/integration/index.d.ts"
],
"middleware": [
"./dist/middleware/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/edge-runtime/index.d.ts",
"require": "./dist/edge-runtime/index.cjs",
"import": "./dist/edge-runtime/index.js"
},
"./integration": {
"types": "./dist/integration/index.d.ts",
"require": "./dist/integration/index.cjs",
"import": "./dist/integration/index.js"
},
"./middleware": {
"types": "./dist/middleware/index.d.ts",
"require": "./dist/middleware/index.cjs",
"import": "./dist/middleware/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup-node",
"watch": "tsup-node --watch"
},
"dependencies": {
"dedent": "^1.5.3",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"slash": "^5.1.0"
},
"devDependencies": {
"@types/dedent": "^0.7.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.3",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"astro": "^5.0.0"
}
}