-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.5 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
{
"name": "@significa/react-i18n",
"description": "Simple i18n library for react",
"version": "0.0.1-development",
"repository": "github:significa/significa-react-i18n",
"publishConfig": {
"@significa:registry": "https://npm.pkg.github.com"
},
"author": "Significa <[email protected]>",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier \"src/**/*.+(ts|tsx|js|jsx|json|yml|yaml|md|mdx)\" --write",
"validate:types": "tsc --noEmit"
},
"keywords": [],
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@significa/eslint-config": "^2.0.1",
"@significa/prettier-config": "^2.0.0",
"@significa/tsconfig-config": "^2.0.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"eslint": "^8.21.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.7.4"
}
}