@rotorjs/jpl 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.
@@ -0,0 +1,10 @@
1
+ export type JPLDashboardLayoutNode = {
2
+ type: 'jpl';
3
+ id?: string;
4
+ src: string;
5
+ };
6
+ export type JPLDashboardTileNode = {
7
+ type: 'jpl';
8
+ id?: string;
9
+ src: string;
10
+ };
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "@rotorjs/jpl",
3
+ "version": "0.0.0",
4
+ "description": "Rotor",
5
+ "author": {
6
+ "name": "Aaron Burmeister"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/rotorjs/jpl.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/rotorjs/jpl/issues"
14
+ },
15
+ "homepage": "https://github.com/rotorjs/",
16
+ "type": "module",
17
+ "keywords": [
18
+ "state",
19
+ "dashboards",
20
+ "jpl"
21
+ ],
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "main": "./dist/main.js",
26
+ "types": "./dist/main.d.ts",
27
+ "exports": {
28
+ ".": {
29
+ "import": {
30
+ "types": "./dist/main.d.ts",
31
+ "default": "./dist/main.js"
32
+ }
33
+ }
34
+ },
35
+ "scripts": {
36
+ "dev": "vite",
37
+ "build": "tsc -b ./tsconfig-build.json && vite build",
38
+ "lint": "eslint . --max-warnings 0",
39
+ "lint:fix": "npm run lint -- --fix",
40
+ "prettify": "prettier . --write",
41
+ "preview": "vite preview",
42
+ "postversion": "git commit -am$npm_package_version",
43
+ "prepublishOnly": "npm run build"
44
+ },
45
+ "devDependencies": {
46
+ "@eslint/js": "^10.0.1",
47
+ "@jplorg/jpl": "^2.0.0",
48
+ "@rotorjs/core": "^0.5.1",
49
+ "@rotorjs/dashboards": "^0.12.0",
50
+ "@types/react": "^19.1.12",
51
+ "@types/react-dom": "^19.1.9",
52
+ "@vitejs/plugin-react": "^6.0.1",
53
+ "eslint": "^10.3.0",
54
+ "eslint-config-prettier": "^10.1.8",
55
+ "eslint-import-resolver-typescript": "^4.4.4",
56
+ "eslint-plugin-import-x": "^4.16.2",
57
+ "eslint-plugin-prettier": "^5.5.4",
58
+ "eslint-plugin-react-hooks": "^7.1.1",
59
+ "eslint-plugin-react-refresh": "^0.5.2",
60
+ "globals": "^17.6.0",
61
+ "prettier": "^3.8.3",
62
+ "react": "^19.2.6",
63
+ "react-dom": "^19.2.6",
64
+ "typescript": "^6.0.3",
65
+ "typescript-eslint": "^8.59.3",
66
+ "unplugin-dts": "^1.0.0",
67
+ "vite": "^8.0.12"
68
+ },
69
+ "peerDependencies": {
70
+ "@jplorg/jpl": "^2.0.0",
71
+ "@rotorjs/dashboards": "^0.12.0"
72
+ },
73
+ "dependencies": {
74
+ "fast-deep-equal": "^3.1.3"
75
+ }
76
+ }