@sledge-app/js 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.
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@sledge-app/js",
3
+ "private": false,
4
+ "version": "0.0.2",
5
+ "type": "module",
6
+ "browser": "./dist/sledge.umd.min.js",
7
+ "files": [
8
+ "dist/",
9
+ "README.md"
10
+ ],
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "scripts": {
15
+ "dev": "vite",
16
+ "build": "tsc && npm run format && vite build",
17
+ "build-and-publish": "echo 'Current version: '$npm_package_version' \nEnter package version' && read version && npm version $version && npm run build && npm publish",
18
+ "preview": "vite preview",
19
+ "format": "npx prettier . --write --ignore-path .gitignore && git update-index --again",
20
+ "clean": "rm -rf node_modules"
21
+ },
22
+ "dependencies": {
23
+ "react": "^18.2.0",
24
+ "react-dom": "^18.2.0"
25
+ },
26
+ "devDependencies": {
27
+ "@sledge/config-tsconfig": "workspace:*",
28
+ "@types/node": "^18.11.9",
29
+ "@types/react": "^18.0.33",
30
+ "@types/react-dom": "^18.0.11",
31
+ "@vitejs/plugin-react": "^4.0.3",
32
+ "@vitejs/plugin-react-swc": "^3.3.2",
33
+ "terser": "^5.19.0",
34
+ "typescript": "^5.1.6",
35
+ "vite": "^4.4.3",
36
+ "vite-plugin-dts": "^3.2.0"
37
+ }
38
+ }