-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.41 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
{
"name": "solid-i18n",
"version": "1.1.0",
"description": "Internationalization for SolidJS",
"main": "lib/index.js",
"module": "lib/index.js",
"sideEffects": false,
"scripts": {
"start": "tsc && babel src --out-dir lib --extensions '.ts,.tsx' --watch",
"build": "tsc && babel src --out-dir lib --extensions '.ts,.tsx'",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SanichKotikov/solid-i18n.git"
},
"bugs": {
"url": "https://github.com/SanichKotikov/solid-i18n/issues"
},
"homepage": "https://github.com/SanichKotikov/solid-i18n",
"author": "Sanich Kotikov <[email protected]> (https://sanichkotikov.github.io)",
"license": "MIT",
"files": [
"lib"
],
"keywords": [
"solid",
"solidjs",
"intl",
"i18n",
"internationalization",
"locale",
"localization",
"format",
"formatting",
"translate",
"translation"
],
"peerDependencies": {
"solid-js": "1.x.x"
},
"dependencies": {
"i18n-mini": "1.1.x"
},
"devDependencies": {
"@babel/cli": "7.22.10",
"@babel/core": "7.22.10",
"@babel/preset-env": "7.22.10",
"@babel/preset-typescript": "7.22.5",
"babel-preset-solid": "1.x.x",
"husky": "8.0.3",
"lint-staged": "14.0.0",
"prettier": "3.0.1",
"typescript": "5.1.6"
}
}