-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.21 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
{
"name": "astro-nanointl",
"type": "module",
"version": "1.0.0",
"description": "Tiny set of tools to implement internationalization for Astro",
"author": {
"name": "e3stpavel"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/e3stpavel/astro-nanointl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/e3stpavel/astro-nanointl.git"
},
"bugs": {
"url": "https://github.com/e3stpavel/astro-nanointl/issues"
},
"keywords": [
"astro",
"withastro",
"astro-component",
"astro-integration",
"nano",
"nanostores",
"seo",
"accessibility",
"i18n",
"internationalization"
],
"exports": {
".": "./index.ts",
"./transformers": "./src/transformers/index.ts"
},
"files": [
"index.ts",
"src"
],
"scripts": {
"lint": "tsc && eslint .",
"test": "vitest --typecheck",
"release": "changeset publish"
},
"peerDependencies": {
"astro": "^4.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.13.3",
"@changesets/cli": "^2.27.1",
"astro": "^4.5.15",
"eslint": "^8.57.0",
"typescript": "^5.4.5",
"vitest": "^1.4.0"
}
}