pankosmia-rcl 0.0.1
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/README.md +3 -0
- package/build/manifest.json +15 -0
- package/build/pankosmia-rcl.es.js +68734 -0
- package/package.json +52 -0
- package/vite.config.js +25 -0
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pankosmia-rcl",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"homepage": "/clients/core-client-rcl",
|
|
6
|
+
"main": "build/pankosmia-rcl.es.js",
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"@emotion/react": "^11.13.3",
|
|
9
|
+
"@emotion/styled": "^11.13.0",
|
|
10
|
+
"@mui/icons-material": "^6.2.1",
|
|
11
|
+
"@mui/material": "^6.2.1",
|
|
12
|
+
"eslint-config-react-app": "^7.0.1",
|
|
13
|
+
"pithekos-lib": "^0.11.4",
|
|
14
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
15
|
+
"react-dom": "^17.0.0 || ^18.0.0"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
19
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
20
|
+
"react-scripts": "5.0.1",
|
|
21
|
+
"vite": "^6.0.7"
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
25
|
+
"react-dom": "^17.0.0 || ^18.0.0"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"start": "react-scripts start",
|
|
29
|
+
"build": "react-scripts build",
|
|
30
|
+
"build:vite": "vite build",
|
|
31
|
+
"build:package": "vite build",
|
|
32
|
+
"dev": "vite"
|
|
33
|
+
},
|
|
34
|
+
"eslintConfig": {
|
|
35
|
+
"extends": [
|
|
36
|
+
"react-app",
|
|
37
|
+
"react-app/jest"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"browserslist": {
|
|
41
|
+
"production": [
|
|
42
|
+
">0.2%",
|
|
43
|
+
"not dead",
|
|
44
|
+
"not op_mini all"
|
|
45
|
+
],
|
|
46
|
+
"development": [
|
|
47
|
+
"last 1 chrome version",
|
|
48
|
+
"last 1 firefox version",
|
|
49
|
+
"last 1 safari version"
|
|
50
|
+
]
|
|
51
|
+
}
|
|
52
|
+
}
|
package/vite.config.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
import { defineConfig } from 'vite'
|
|
3
|
+
import react from '@vitejs/plugin-react'
|
|
4
|
+
|
|
5
|
+
// https://vitejs.dev/config/
|
|
6
|
+
export default defineConfig({
|
|
7
|
+
plugins: [react()],
|
|
8
|
+
server: {
|
|
9
|
+
port: 5174, // Unique port for new_project
|
|
10
|
+
strictPort: true,
|
|
11
|
+
host: true,
|
|
12
|
+
cors: true,
|
|
13
|
+
origin: 'http://localhost:8000',
|
|
14
|
+
},
|
|
15
|
+
build: {
|
|
16
|
+
outDir: 'build',
|
|
17
|
+
emptyOutDir: true,
|
|
18
|
+
lib: {
|
|
19
|
+
entry: path.resolve(__dirname, './src/rcl/index.js'),
|
|
20
|
+
name: 'pankosmia-rcl',
|
|
21
|
+
fileName: (format) => `pankosmia-rcl.${format}.js`
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
base: '/clients/core-client-rcl/'
|
|
25
|
+
})
|