@ensera/plugin-frontend 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/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@ensera/plugin-frontend",
3
+ "version": "1.0.0",
4
+ "description": "Runtime frontend SDK for Ensera plugins.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ },
14
+ "./package.json": "./package.json"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md"
19
+ ],
20
+ "sideEffects": false,
21
+ "scripts": {
22
+ "build": "tsup src/index.ts --format esm --dts --clean --target es2022 --outDir dist",
23
+ "dev": "tsup src/index.ts --format esm --dts --watch --target es2022 --outDir dist",
24
+ "typecheck": "tsc -p tsconfig.json --noEmit",
25
+ "prepublishOnly": "npm run build && npm run typecheck"
26
+ },
27
+ "keywords": [
28
+ "ensera",
29
+ "frontend",
30
+ "sdk",
31
+ "plugin",
32
+ "react"
33
+ ],
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "engines": {
38
+ "node": ">=18"
39
+ },
40
+ "peerDependencies": {
41
+ "react": "^18.0.0",
42
+ "react-dom": "^18.0.0"
43
+ },
44
+ "devDependencies": {
45
+ "@types/react": "^18.3.28",
46
+ "@types/react-dom": "^18.3.7",
47
+ "react": "^18.3.1",
48
+ "react-dom": "^18.3.1"
49
+ }
50
+ }