forked from Alexandre-Fernandez/astro-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.8 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.8 KB
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
{
"name": "astro-i18n",
"version": "1.6.9",
"author": "alexandre-fernandez",
"description": "A TypeScript-first internationalization library for Astro.",
"keywords": [
"astro",
"i18n",
"l10n",
"internationalization",
"localization",
"typescript",
"astro-component",
"seo",
"accessibility"
],
"license": "MIT",
"homepage": "https://github.com/alexandre-fernandez/astro-i18n",
"repository": {
"type": "git",
"url": "https://github.com/alexandre-fernandez/astro-i18n"
},
"main": "dist/src/index.mjs",
"bin": "dist/src/cli/index.cjs",
"types": "./dist/src/index.d.ts",
"files": [
"dist"
],
"exports": {
".": "./dist/src/index.mjs",
"./components": "./dist/src/astro/index.mjs"
},
"typesVersions": {
"*": {
"": [
"./dist/src/index.d.ts"
],
"components": [
"./dist/src/astro/index.d.ts"
]
}
},
"scripts": {
"prepare": "ts-patch install -s",
"lint": "eslint --ignore-path .eslintignore .",
"build": "npm run build:types && npm run build:core && npm run build:cli && npm run build:astro",
"build:types": "tsc --project tsconfig.json",
"build:core": "node esbuild/core.cjs",
"build:cli": "node esbuild/cli.cjs",
"build:astro": "node esbuild/astro.cjs && cpy 'src/astro/*.astro' dist/src/astro"
},
"devDependencies": {
"@types/node": "^18.8.5",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"astro": "^1.5.0",
"cpy-cli": "^4.2.0",
"esbuild": "^0.15.11",
"eslint": "^8.27.0",
"eslint-config-af-typescript": "^1.5.0",
"prettier": "^2.7.1",
"ts-patch": "^2.0.2",
"typescript": "4.8.4",
"typescript-transform-paths": "^3.4.4"
},
"dependencies": {
"get-file-exports": "^1.2.1"
},
"contributors": [
{
"name": "Alexandre Fernandez",
"url": "https://github.com/alexandre-fernandez"
}
]
}