forked from sveltekit-i18n/lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.66 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
{
"name": "sveltekit-i18n",
"version": "2.2.2",
"description": "Internationalization library for SvelteKit",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "tsup --watch",
"test": "jest",
"build": "tsup",
"lint": "eslint --fix --ext .ts,.js --ignore-path .gitignore ."
},
"files": [
"dist"
],
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sveltekit-i18n/lib.git"
},
"keywords": [
"svelte",
"sveltekit",
"i18n",
"l10n",
"internationalization",
"localization",
"translation"
],
"author": "Jarda Svoboda",
"license": "MIT",
"bugs": {
"url": "https://github.com/sveltekit-i18n/lib/issues"
},
"homepage": "https://github.com/sveltekit-i18n/lib#readme",
"peerDependencies": {
"svelte": "^3.x"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-svelte3": "^4.0.0",
"jest": "^28.0.3",
"pre-commit": "^1.2.2",
"ts-jest": "^28.0.0-next.3",
"tsup": "^6.1.3",
"typescript": "^4.7.4"
},
"dependencies": {
"@sveltekit-i18n/base": "~1.2.1",
"@sveltekit-i18n/parser-default": "~1.0.3"
},
"workspaces": [
"./examples/*/"
]
}