-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "ra-language-arabic",
"version": "1.0.0",
"description": "Arabic translations for React-Admin, the frontend framework for building admin applications on top of REST/GraphQL services.",
"main": "lib/index.js",
"scripts": {
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/developerium/ra-language-arabic.git"
},
"files": [
"*.md",
"lib",
"esm",
"src"
],
"module": "esm/index.js",
"types": "esm/index.d.ts",
"dependencies": {
"ra-core": "^3.14.1"
},
"keywords": [
"react",
"admin-on-rest",
"react-admin",
"translation"
],
"author": "Vahid Kheradmand",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/developerium/ra-language-arabic/issues"
},
"homepage": "https://github.com/developerium/ra-language-arabic#readme",
"devDependencies": {
"rimraf": "^3.0.2"
}
}