@lokalise/harmony 1.0.0
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/LICENSE.md +13 -0
- package/README.md +2 -0
- package/dist/harmony.cjs +1 -0
- package/dist/harmony.mjs +5 -0
- package/dist/types/components/NavigationPanel/NavigationPanel.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +71 -0
package/LICENSE.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
Copyright 2024 Lokalise, Inc.
|
2
|
+
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
you may not use this file except in compliance with the License.
|
5
|
+
You may obtain a copy of the License at
|
6
|
+
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
8
|
+
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
+
See the License for the specific language governing permissions and
|
13
|
+
limitations under the License.
|
package/README.md
ADDED
@@ -0,0 +1,2 @@
|
|
1
|
+
# harmony
|
2
|
+
A temporary shared library designed to house reusable components, such as molecules and organisms, exclusively for the Expert and Flow platforms during the migration period. This library will be retired upon the completion of the migration and the establishment of the unified next-gen platform.
|
package/dist/harmony.cjs
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),i=()=>e.jsx("div",{children:"Navigation Panel"});exports.NavigationPanel=i;
|
package/dist/harmony.mjs
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export declare const NavigationPanel: () => import("react/jsx-runtime").JSX.Element;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { NavigationPanel } from './components/NavigationPanel/NavigationPanel';
|
package/package.json
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
{
|
2
|
+
"name": "@lokalise/harmony",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"author": {
|
5
|
+
"name": "Lokalise",
|
6
|
+
"url": "https://lokalise.com/"
|
7
|
+
},
|
8
|
+
"homepage": "https://github.com/lokalise/harmony",
|
9
|
+
"repository": {
|
10
|
+
"type": "git",
|
11
|
+
"url": "https://github.com/lokalise/harmony.git"
|
12
|
+
},
|
13
|
+
"files": ["dist/**", "README.md"],
|
14
|
+
"type": "module",
|
15
|
+
"license": "Apache-2.0",
|
16
|
+
"publishConfig": {
|
17
|
+
"access": "public"
|
18
|
+
},
|
19
|
+
"scripts": {
|
20
|
+
"build": "rimraf dist && vite build",
|
21
|
+
"bundle:size": "bundlesize",
|
22
|
+
"test": "vitest",
|
23
|
+
"test:coverage": "vitest --coverage",
|
24
|
+
"test:ci": "npm run lint && npm run test:coverage",
|
25
|
+
"test:update-snapshots": "vitest -u",
|
26
|
+
"lint": "biome check . && tsc --project tsconfig.lint.json --noEmit",
|
27
|
+
"lint:fix": "biome check --write",
|
28
|
+
"prepublishOnly": "npm run build",
|
29
|
+
"postversion": "biome check --write package.json"
|
30
|
+
},
|
31
|
+
"dependencies": {},
|
32
|
+
"peerDependencies": {
|
33
|
+
"@lokalise/louis": ">=26.0.0",
|
34
|
+
"@lokalise/token-dictionary": ">=2.42.1",
|
35
|
+
"react": ">=18.0.0",
|
36
|
+
"react-dom": ">=18.0.0"
|
37
|
+
},
|
38
|
+
"devDependencies": {
|
39
|
+
"@biomejs/biome": "^1.9.4",
|
40
|
+
"@lokalise/biome-config": "^1.5.0",
|
41
|
+
"@lokalise/styled": "^3.0.0",
|
42
|
+
"@testing-library/jest-dom": "^6.4.6",
|
43
|
+
"@testing-library/react": "^15.0.7",
|
44
|
+
"@testing-library/user-event": "^14.5.2",
|
45
|
+
"@types/node": "^22.7.6",
|
46
|
+
"@types/react": "^18.3.18",
|
47
|
+
"@types/react-dom": "18.3.0",
|
48
|
+
"@typescript-eslint/parser": "^7.16.1",
|
49
|
+
"@vitejs/plugin-react": "^4.3.4",
|
50
|
+
"@vitest/coverage-v8": "^3.0.3",
|
51
|
+
"bundlesize2": "^0.0.32",
|
52
|
+
"eslint-plugin-i18next": "^6.0.9",
|
53
|
+
"eslint-plugin-testing-library": "^6.2.2",
|
54
|
+
"jsdom": "20.0.0",
|
55
|
+
"typescript": "^5.7.3",
|
56
|
+
"vite": "^6.0.11",
|
57
|
+
"vite-plugin-dts": "^4.5.0",
|
58
|
+
"vitest": "^3.0.3"
|
59
|
+
},
|
60
|
+
"main": "dist/harmony.cjs",
|
61
|
+
"module": "dist/harmony.mjs",
|
62
|
+
"types": "dist/types/index.d.ts",
|
63
|
+
"sideEffects": false,
|
64
|
+
"exports": {
|
65
|
+
".": {
|
66
|
+
"types": "./dist/types/index.d.ts",
|
67
|
+
"require": "./dist/harmony.cjs",
|
68
|
+
"import": "./dist/harmony.mjs"
|
69
|
+
}
|
70
|
+
}
|
71
|
+
}
|