forked from willin/remix-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "remix-i18n",
"version": "0.2.0",
"description": "",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"browser": "./browser/index.js",
"source": "./src/index.ts",
"module": "./browser/index.js",
"scripts": {
"dev": "make document",
"build": "npm run build:browser && npm run build:main",
"build:browser": "tsc --module ESNext --outDir ./browser",
"build:main": "tsc --module CommonJS --outDir ./dist",
"prepare": "husky install"
},
"dependencies": {
"@types/dlv": "^1.1.2",
"dlv": "^1.1.3",
"templite": "^1.2.0"
},
"peerDependencies": {
"@remix-run/react": "^1.18.1",
"@remix-run/server-runtime": "^1.18.1",
"react": "^18.2.0"
},
"devDependencies": {
"@remix-run/eslint-config": "^1.1.3",
"@remix-run/react": "^1.1.3",
"@remix-run/server-runtime": "^1.1.3",
"@types/react": "^17.0.39",
"@willin/eslint-config": "^0.1.1",
"eslint": "^8.8.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"react": "^18.2.0",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willin/remix-i18n.git"
},
"keywords": [
"remix",
"i18n",
"internationalization",
"translation",
"localization"
],
"author": "Willin Wang <willin@willin.org> (https://willin.wang/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/willin/remix-i18n/issues"
},
"homepage": "https://github.com/willin/remix-i18n#readme"
}