-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.16 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
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@waveplay/pilot-i18next",
"version": "0.0.0-development",
"license": "MIT",
"private": false,
"description": "Support for i18next in Pilot router",
"repository": {
"type": "git",
"url": "https://github.com/Wave-Play/pilot-i18next.git"
},
"engines": {
"node": ">=12"
},
"author": "WavePlay <[email protected]> (waveplay.com)",
"contributors": [
"Pkmmte Xeleon <[email protected]>"
],
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"release": {
"branches": [
"main",
"next"
]
},
"publishConfig": {
"access": "public"
},
"files": [
"src/",
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup && tsup src/cli.ts src/import-resource.ts --dts --sourcemap --format cjs",
"semantic-release": "semantic-release"
},
"bin": {
"pilot-i18next": "dist/cli.js"
},
"dependencies": {
"hoist-non-react-statics": "3.3.2"
},
"peerDependencies": {
"next-i18next": "12.0.1"
},
"devDependencies": {
"@swc/core": "1.3.6",
"@types/next": "9.0.0",
"@types/node": "18.8.3",
"@types/react": "18.0.21",
"@types/react-native": "0.70.3",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"app-root-path": "3.1.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "25.3.0",
"fs-extra": "10.1.0",
"klaw": "4.0.1",
"semantic-release": "18.0.1",
"semantic-release-cli": "5.4.4",
"tsup": "6.2.3",
"typescript": "4.6.2"
},
"eslint": {
"env": {
"es6": true,
"jest": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:import/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"arrow-body-style": [
"error",
"always"
],
"curly": "error",
"import/order": [
"error",
{
"newlines-between": "always"
}
]
},
"settings": {
"import/extensions": [
".ts"
],
"import/resolver": {
"node": {
"extensions": [
".ts"
]
}
}
}
}
}