forked from sveltekit-i18n/base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.62 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
{
"name": "@sveltekit-i18n/base",
"version": "1.3.6",
"description": "Base functionality of sveltekit-i18n library with a support for external message parsers.",
"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": "npx cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"build": "tsup",
"prepublishOnly": "npm run build",
"lint": "eslint --fix --ext .ts,.js --ignore-path .gitignore ."
},
"files": [
"dist"
],
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sveltekit-i18n/base.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/base#readme",
"peerDependencies": {
"svelte": ">=3.49.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^29.6.0",
"pre-commit": "^1.2.2",
"ts-jest": "^29.1.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
}
}