-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "ra-language-romanian",
"description": "Romanian translations for react-admin. A frontend Framework for building admin applications running in the browser on top of REST/GraphQL services, using ES6, React and Material Design",
"version": "1.0.2",
"author": "György Hunor-Árpád",
"bugs": {
"url": "https://github.com/gyhaLabs/ra-language-romanian/issues"
},
"homepage": "https://github.com/gyhaLabs/ra-language-romanian#readme",
"keywords": [
"admin-on-rest",
"i18n",
"react",
"react-admin",
"translation"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gyhaLabs/ra-language-romanian.git"
},
"files": [
"*.md",
"lib",
"esm",
"src",
"tsconfig.json"
],
"main": "lib/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"scripts": {
"build": "npm run build-cjs && npm run build-esm",
"build-cjs": "rimraf ./lib && tsc",
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
"watch": "tsc --outDir esm --module es2015 --watch"
},
"dependencies": {
"ra-core": "^3.12.2"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
}
}