-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.51 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
{
"name": "@haleos/ra-language-german",
"version": "1.0.0",
"description": "Formal and informal German messages for react-admin, the frontend framework for building admin applications on top of REST/GraphQL services",
"repository": {
"type": "git",
"url": "git+https://github.com/haleosdev/ra-language-german.git"
},
"files": [
"*.md",
"dist",
"src"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"build": "npm run build-cjs && npm run build-esm",
"build-cjs": "rimraf ./dist/cjs && tsc --outDir dist/cjs",
"build-esm": "rimraf ./dist/esm && tsc --outDir dist/esm --module es2015",
"watch": "tsc --outDir dist/esm --module es2015 --watch",
"publish": "npm publish --@haleos:registry=https://registry.npmjs.org --access public",
"prepublish": "npm run build"
},
"dependencies": {
"lodash": "^4.17.21",
"ra-core": "^4.11.2",
"type-fest": "^3.12.0"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"rimraf": "^3.0.2",
"typescript": "^4.4.0"
},
"keywords": [
"react",
"react-admin",
"admin-on-rest",
"translation"
],
"author": "Haleos UG (haftungsbeschränkt) <[email protected]> (https://haleos.de)",
"contributors": [
"Thomas Lenz <[email protected]> (https://haleos.de)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/haleosdev/ra-language-german/issues"
},
"homepage": "https://github.com/haleosdev/ra-language-german#readme"
}