-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.76 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
{
"name": "sveltekit-i18n",
"version": "2.4.2",
"description": "Internationalization library for SvelteKit",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "tsup --watch",
"test": "npx cross-env NODE_OPTIONS=--experimental-vm-modules jest --verbose",
"build": "tsup",
"prepublishOnly": "pnpm run build",
"lint": "eslint --fix --ext .ts,.js,.svelte --ignore-path .gitignore ."
},
"files": [
"dist"
],
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/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.49.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^24.12.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-svelte": "^2.46.1",
"jest": "^29.7.0",
"pre-commit": "^1.2.2",
"ts-jest": "^29.4.11",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@sveltekit-i18n/base": "~1.3.7",
"@sveltekit-i18n/parser-default": "~1.1.1"
}
}