@nuvio/overlay 0.1.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,60 @@
1
+ {
2
+ "name": "@nuvio/overlay",
3
+ "version": "0.1.0",
4
+ "description": "Nuvio dev overlay: edit mode, selection, Editor panel, Validate/Apply/Undo against the Vite dev server.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/ehah/Nuvio.git",
9
+ "directory": "packages/overlay"
10
+ },
11
+ "keywords": [
12
+ "nuvio",
13
+ "vite",
14
+ "overlay",
15
+ "devtools",
16
+ "react"
17
+ ],
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "README.md"
24
+ ],
25
+ "type": "module",
26
+ "sideEffects": false,
27
+ "main": "./dist/index.js",
28
+ "types": "./dist/index.d.ts",
29
+ "exports": {
30
+ ".": {
31
+ "types": "./dist/index.d.ts",
32
+ "import": "./dist/index.js"
33
+ }
34
+ },
35
+ "engines": {
36
+ "node": ">=20"
37
+ },
38
+ "peerDependencies": {
39
+ "react": "^18.3.1 || ^19.0.0",
40
+ "react-dom": "^18.3.1 || ^19.0.0"
41
+ },
42
+ "dependencies": {
43
+ "@nuvio/shared": "0.1.0"
44
+ },
45
+ "devDependencies": {
46
+ "@types/react": "^19.0.8",
47
+ "@types/react-dom": "^19.0.3",
48
+ "jsdom": "^26.0.0",
49
+ "react": "^19.0.0",
50
+ "react-dom": "^19.0.0",
51
+ "tsup": "^8.4.0",
52
+ "typescript": "^5.7.3",
53
+ "vitest": "^3.0.6"
54
+ },
55
+ "scripts": {
56
+ "build": "tsup src/index.tsx --format esm --dts --external react --external react-dom --external @nuvio/shared",
57
+ "typecheck": "tsc -p tsconfig.json --noEmit",
58
+ "test": "vitest run"
59
+ }
60
+ }