-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.03 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.03 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
76
77
{
"name": "@ariaskit/astro-i18n",
"version": "0.0.8",
"description": "An internationalization (i18n) library for Astro framework, providing easy localization and translation management for your Astro projects.",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./I18NDebug.astro": "./dist/I18NDebug.astro"
},
"bin": {
"astro-i18n-check": "./dist/cli.mjs"
},
"main": "./dist/index.mjs",
"scripts": {
"build": "tsup",
"build:dev": "pnpm run build && pnpm link --global",
"watch": "tsup --watch",
"format": "prettier --write \"**/*.{js,ts}\"",
"check": "prettier --check \"**/*.{js,ts}\"",
"prepare": "husky",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest --coverage",
"test:v": "vitest --reporter verbose",
"push": "git add . && gitzen commit -y && git push && pnpm run build:dev",
"publish:npm": "npm publish --access public",
"lint": "eslint . --ext .ts,.js"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint"
]
},
"lint-staged:options": {
"allowEmpty": true
},
"keywords": [
"astro",
"i18n",
"internationalization",
"localization"
],
"author": "JorgeRosbel",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/JorgeRosbel/astro-i18n"
},
"bugs": {
"url": "https://github.com/JorgeRosbel/astro-i18n/issues"
},
"homepage": "https://github.com/JorgeRosbel/astro-i18n#readme",
"devDependencies": {
"@esbuild-plugins/tsconfig-paths": "0.1.2",
"@eslint/create-config": "1.11.0",
"@eslint/js": "^9.39.2",
"@types/node": "24.0.15",
"astro": "5.16.6",
"eslint": "^9.39.2",
"globals": "^17.1.0",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"prettier": "3.6.2",
"tsup": "8.5.0",
"tsx": "4.20.3",
"typescript": "5.8.3",
"typescript-eslint": "^8.53.1",
"vitest": "3.2.4"
},
"peerDependencies": {
"astro": ">=5.0.0"
}
}