@octostar/map-component 0.1.2 → 0.1.11

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 (1) hide show
  1. package/package.json +10 -19
package/package.json CHANGED
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "@octostar/map-component",
3
- "version": "0.1.2",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
- "packageManager": "pnpm@9.15.0",
7
6
  "description": "MapLibre-based map editor component",
8
7
  "main": "./dist/index.cjs",
9
8
  "module": "./dist/index.mjs",
@@ -35,17 +34,6 @@
35
34
  "sideEffects": [
36
35
  "*.css"
37
36
  ],
38
- "scripts": {
39
- "dev": "NODE_ENV=development tsx server/index.ts",
40
- "build": "tsx script/build.ts",
41
- "build:lib": "vite build --config vite.config.lib.ts && tsc -p tsconfig.build.json",
42
- "start": "NODE_ENV=production node dist-app/index.cjs",
43
- "check": "tsc",
44
- "typecheck": "tsc --noEmit",
45
- "db:push": "drizzle-kit push",
46
- "prepare": "pnpm run build:lib",
47
- "prepublishOnly": "pnpm run build:lib"
48
- },
49
37
  "peerDependencies": {
50
38
  "react": "^18.0.0 || ^19.0.0",
51
39
  "react-dom": "^18.0.0 || ^19.0.0"
@@ -185,10 +173,13 @@
185
173
  "drawing",
186
174
  "gis"
187
175
  ],
188
- "pnpm": {
189
- "overrides": {
190
- "esbuild@<=0.24.2": ">=0.25.0",
191
- "qs@<6.14.1": ">=6.14.1"
192
- }
176
+ "scripts": {
177
+ "dev": "NODE_ENV=development tsx server/index.ts",
178
+ "build": "tsx script/build.ts",
179
+ "build:lib": "vite build --config vite.config.lib.ts && tsc -p tsconfig.build.json",
180
+ "start": "NODE_ENV=production node dist-app/index.cjs",
181
+ "check": "tsc",
182
+ "typecheck": "tsc --noEmit",
183
+ "db:push": "drizzle-kit push"
193
184
  }
194
- }
185
+ }