@sutech_jp/raas-react-client 0.0.2

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.
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const HelloWorld: () => JSX.Element;
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.HelloWorld = void 0;
7
+ var react_1 = __importDefault(require("react"));
8
+ var HelloWorld = function () {
9
+ return react_1.default.createElement("h3", null, "Hello World");
10
+ };
11
+ exports.HelloWorld = HelloWorld;
@@ -0,0 +1 @@
1
+ export { HelloWorld } from './HelloWorld';
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HelloWorld = void 0;
4
+ var HelloWorld_1 = require("./HelloWorld");
5
+ Object.defineProperty(exports, "HelloWorld", { enumerable: true, get: function () { return HelloWorld_1.HelloWorld; } });
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@sutech_jp/raas-react-client",
3
+ "version": "0.0.2",
4
+ "description": "react client for raas produced by SuTech",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "author": "sutech",
11
+ "license": "ISC",
12
+ "scripts": {
13
+ "test": "jest",
14
+ "watch": "tsc -w",
15
+ "build": "rimraf dist&&tsc",
16
+ "prepublishOnly": "npm run build&&npm version patch",
17
+ "lint:fix": "eslint --fix \"./{src,test}/**/*.{tsx,ts,js}\" --ignore-path .gitignore",
18
+ "format": "prettier --write \"./{src,test}/**/*.{tsx,ts,js}\" --ignore-path .gitignore",
19
+ "precommit": "npm run format && npm run lint:fix"
20
+ },
21
+ "husky": {
22
+ "hooks": {
23
+ "pre-commit": "npm run precommit"
24
+ }
25
+ },
26
+ "dependencies": {},
27
+ "devDependencies": {
28
+ "@testing-library/dom": "^8.11.1",
29
+ "@testing-library/jest-dom": "^5.15.1",
30
+ "@testing-library/react": "^12.1.2",
31
+ "@testing-library/user-event": "^13.5.0",
32
+ "@types/jest": "^27.4.0",
33
+ "@types/node": "^16.9.4",
34
+ "@types/react": "17.0.20",
35
+ "@types/react-beautiful-dnd": "^13.1.2",
36
+ "@types/uuid": "^8.3.4",
37
+ "@typescript-eslint/eslint-plugin": "^4.31.2",
38
+ "@typescript-eslint/parser": "^4.31.2",
39
+ "eslint": "^7.32.0",
40
+ "eslint-config-prettier": "^8.3.0",
41
+ "eslint-plugin-import": "^2.24.2",
42
+ "eslint-plugin-jest-dom": "^3.9.2",
43
+ "eslint-plugin-prettier": "^4.0.0",
44
+ "eslint-plugin-react": "^7.26.1",
45
+ "eslint-plugin-react-hooks": "^4.2.0",
46
+ "eslint-plugin-testing-library": "^5.0.1",
47
+ "husky": "^4.3.8",
48
+ "jest": "^27.5.1",
49
+ "prettier": "^2.2.1",
50
+ "rimraf": "^3.0.2",
51
+ "ts-jest": "^27.0.7",
52
+ "typescript": "^4.4.3"
53
+ },
54
+ "peerDependencies": {
55
+ "encoding": "0.1.13",
56
+ "next": "^12.0.4",
57
+ "react": "17.0.2",
58
+ "react-dom": "17.0.2"
59
+ }
60
+ }