m2m-components 0.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +88 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ Document: https://github.com/matsuri-tech/m2m-components/discussions/78
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "m2m-components",
3
+ "version": "0.0.0",
4
+ "main": "index.js",
5
+ "module": "index.js",
6
+ "typings": "index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "default": "./index.js"
10
+ },
11
+ "./m2m-apps-menu": {
12
+ "default": "./m2m-apps-menu.js"
13
+ },
14
+ "./m2m-user-menu": {
15
+ "default": "./m2m-user-menu.js"
16
+ },
17
+ "./domains": {
18
+ "default": "./domains.js"
19
+ },
20
+ "./storage/client": {
21
+ "default": "./storage/client.js"
22
+ },
23
+ "./storage/hub": {
24
+ "default": "./storage/hub.js"
25
+ },
26
+ "./notification": {
27
+ "default": "./notification/index.js"
28
+ }
29
+ },
30
+ "files": [
31
+ "/domains.{d.ts, d.ts.map,js,js.map}",
32
+ "/index.{d.ts, d.ts.map,js,js.map}",
33
+ "/LitMenuBaseElement.{d.ts, d.ts.map,js,js.map}",
34
+ "/m2m-apps-menu.{d.ts, d.ts.map,js,js.map}",
35
+ "/m2m-user-menu.{d.ts, d.ts.map,js,js.map}",
36
+ "/notification/",
37
+ "/storage/",
38
+ "/endpoints/"
39
+ ],
40
+ "targets": {
41
+ "module": false,
42
+ "main": false,
43
+ "types": false
44
+ },
45
+ "scripts": {
46
+ "dev": "vite serve website/clients/ --port 1234",
47
+ "build-app:clients": "vite build website/clients/ --out-dir ../../build -c vite.config.clients.ts -m development",
48
+ "build-app:hub": "vite build website/hub/ --out-dir ../../build",
49
+ "build-app:hub:dev": "vite build website/hub/ --out-dir ../../build -m development",
50
+ "clean": "rm -rf {m2m-apps-menu,m2m-user-menu,LitMenuBaseElement,domains,index}.{d.ts.map,d.ts,js.map,js} storage/ notification/ endpoints/",
51
+ "build": "concurrently yarn:build:*",
52
+ "build:esm": "NODE_ENV=production BABEL_ENV=esm babel src --extensions .ts -d ./ --source-maps",
53
+ "build:types": "tsc -p tsconfig.json --emitDeclarationOnly --declaration --declarationDir ./",
54
+ "lint": "eslint .",
55
+ "postlint": "prettier --check .",
56
+ "format": "eslint . --fix",
57
+ "postformat": "prettier --write .",
58
+ "typecheck": "tsc -p . --noEmit"
59
+ },
60
+ "dependencies": {
61
+ "lit": "^2.0.2",
62
+ "matsuri-hooks": "^0.0.5",
63
+ "matsuri-ui": "^10.2.3",
64
+ "react": "^17.0.2"
65
+ },
66
+ "devDependencies": {
67
+ "@babel/cli": "^7.16.0",
68
+ "@babel/core": "^7.16.5",
69
+ "@babel/plugin-proposal-class-properties": "^7.16.7",
70
+ "@babel/plugin-proposal-decorators": "^7.16.5",
71
+ "@babel/preset-env": "^7.16.5",
72
+ "@babel/preset-typescript": "^7.16.5",
73
+ "@rollup/plugin-babel": "^5.3.0",
74
+ "@rollup/plugin-node-resolve": "^13.1.3",
75
+ "@rollup/plugin-typescript": "^8.3.0",
76
+ "@types/node": "^17.0.5",
77
+ "@typescript-eslint/eslint-plugin": "^5.9.1",
78
+ "@typescript-eslint/parser": "^5.9.1",
79
+ "concurrently": "^6.5.1",
80
+ "endpoints-sdk-cli": "^2.2.0",
81
+ "eslint": "^8.7.0",
82
+ "eslint-config-prettier": "^8.3.0",
83
+ "prettier": "^2.5.1",
84
+ "rollup": "^2.67.1",
85
+ "typescript": "^4.5.4",
86
+ "vite": "^2.7.9"
87
+ }
88
+ }