ra-language-finnish 5.11.1 → 5.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/index.js +1 -0
- package/lib/index.js +1 -0
- package/package.json +46 -46
- package/src/index.ts +1 -0
package/esm/index.js
CHANGED
package/lib/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
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
|
-
}
|
|
2
|
+
"name": "ra-language-finnish",
|
|
3
|
+
"version": "5.12.1",
|
|
4
|
+
"description": "Finnish messages for react-admin, the frontend Framework for building B2B applications running in the browser on top of REST/GraphQL APIs, using ES6, React and Material Design",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/Aikain/ra-language-finnish.git"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"*.md",
|
|
11
|
+
"lib",
|
|
12
|
+
"esm",
|
|
13
|
+
"src"
|
|
14
|
+
],
|
|
15
|
+
"main": "lib/index.js",
|
|
16
|
+
"module": "esm/index.js",
|
|
17
|
+
"types": "esm/index.d.ts",
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "yarn run build-cjs && yarn run build-esm",
|
|
20
|
+
"build-cjs": "rimraf ./lib && tsc",
|
|
21
|
+
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
|
|
22
|
+
"ts:check": "tsc --noemit",
|
|
23
|
+
"prettier": "prettier --write src",
|
|
24
|
+
"watch": "tsc --outDir esm --module es2015 --watch"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"ra-core": "^5.12.1"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"prettier": "3.6.2",
|
|
31
|
+
"rimraf": "^6.0.1",
|
|
32
|
+
"typescript": "^5.9.3"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"react-admin",
|
|
36
|
+
"finnish",
|
|
37
|
+
"translation",
|
|
38
|
+
"ra-language-finnish"
|
|
39
|
+
],
|
|
40
|
+
"author": "Ville Nupponen <ville.nupponen@aika.in>",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/Aikain/ra-language-finnish/issues"
|
|
44
|
+
},
|
|
45
|
+
"homepage": "https://github.com/Aikain/ra-language-finnish#readme",
|
|
46
|
+
"packageManager": "yarn@4.10.3"
|
|
47
|
+
}
|
package/src/index.ts
CHANGED