-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "@razorpay/i18nify-react",
"version": "1.1.0",
"description": "",
"author": "tarun khanna <[email protected]>",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"repository": {
"type": "git",
"url": "ssh://[email protected]:razorpay/i18nify-react.git"
},
"files": [
"lib"
],
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"tsc": "tsc --noEmit",
"validate": "yarn tsc && yarn lint:fix",
"format": "prettier src --write",
"format:check": "prettier src --check",
"clean": "rm -rf lib",
"build": "yarn clean && rollup -c",
"prepare": "husky install && yarn build",
"lint-staged": "lint-staged -c .lintstagedrc.json",
"release": "node ./scripts/generateGitHubRegistryNpmrc.js && changeset publish",
"publish-npm": "node ./scripts/publishToNpm.js"
},
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"@razorpay/i18nify-js": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@razorpay/i18nify-js": "^1.0.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"execa": "5.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.6.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
}
}