-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
{
"name": "ra-language-farsi",
"version": "5.1.0",
"description": "Farsi translations for React-Admin, the frontend framework for building admin applications on top of REST/GraphQL services.",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"scripts": {
"lint": "yarn eslint",
"build": "yarn run build-cjs && yarn run build-esm",
"build-cjs": "rimraf ./lib && tsc",
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
"watch": "tsc --outDir esm --module es2015 --watch",
"postversion": "yarn build",
"prepublishOnly": "yarn build"
},
"files": [
"*.md",
"lib",
"esm",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hamidfzm/ra-language-farsi.git"
},
"keywords": [
"react",
"admin-on-rest",
"react-admin",
"translation",
"farsi-translation"
],
"author": "Hamid FzM",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hamidfzm/ra-language-farsi/issues"
},
"homepage": "https://github.com/hamidfzm/ra-language-farsi#readme",
"peerDependencies": {
"ra-core": "^5.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@hamidfzm/eslint-config": "^0.10.0",
"commitlint": "^18.4.4",
"eslint": "^8.57.0",
"husky": "^9.1.3",
"prettier": "^3.3.3",
"ra-core": "^5.1.0",
"typescript": "~5.5.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint",
"post-checkout": "yarn install"
}
}
}