-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
99 lines (99 loc) · 2.63 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "svelte-i18n",
"version": "4.0.1",
"type": "module",
"main": "dist/runtime.js",
"exports": {
"types": "./dist/runtime.d.ts",
"default": "./dist/runtime.js"
},
"types": "dist/runtime.d.ts",
"bin": {
"svelte-i18n": "dist/cli.js"
},
"license": "MIT",
"description": "Internationalization library for Svelte",
"author": "Christian Kaisermann <[email protected]>",
"repository": "https://github.com/kaisermann/svelte-i18n",
"keywords": [
"svelte",
"i18n",
"internationalization",
"localization",
"translation"
],
"engines": {
"node": ">= 16"
},
"volta": {
"node": "16.14.0"
},
"scripts": {
"clean": "rm -rf dist/",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu jest",
"test:ci": "pnpm test -- --silent",
"lint": "eslint \"{src,test}/**/*.ts\"",
"format": "prettier --loglevel silent --write \"{src,test}/**/*.ts\"",
"release": " git add package.json && git commit -m \"chore(release): v$npm_package_version :tada:\"",
"prebuild": "pnpm clean",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1 && git add CHANGELOG.md",
"prepublishOnly": "pnpm test -- --no-cache && pnpm build && publint",
"prepare": "husky install"
},
"files": [
"dist/"
],
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"peerDependencies": {
"svelte": "^3 || ^4 || ^5"
},
"devDependencies": {
"@kiwi/eslint-config": "^2.2.8",
"@kiwi/prettier-config": "^2.2.8",
"@rollup/plugin-commonjs": "^25.0.4",
"@types/cli-color": "^2.0.2",
"@types/dlv": "^1.1.2",
"@types/estree": "1.0.1",
"@types/intl": "^1.2.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.5.9",
"@types/sade": "^1.7.4",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"full-icu": "^1.5.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.0.3",
"prettier": "^3.0.3",
"publint": "^0.2.4",
"rollup": "^3.28.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-dts": "^6.0.1",
"rollup-plugin-esbuild": "^5.0.0",
"svelte": "^3.53.1",
"svelte-preprocess": "^5.0.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"cli-color": "^2.0.3",
"deepmerge": "^4.2.2",
"esbuild": "^0.19.2",
"estree-walker": "^2",
"intl-messageformat": "^10.5.3",
"sade": "^1.8.1",
"tiny-glob": "^0.2.9"
}
}