@lumen-stack/react 0.1.3 → 0.1.4
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/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +15 -15
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumen-stack/react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "React SDK for Lumen — screenshot capture, annotation, and feedback widget.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public",
|
|
8
|
-
"provenance":
|
|
8
|
+
"provenance": true
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
11
|
"sideEffects": [
|
|
@@ -25,14 +25,24 @@
|
|
|
25
25
|
"files": [
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsup && pnpm build:directive && pnpm build:css",
|
|
30
|
+
"build:directive": "node -e \"const fs=require('fs');for(const f of ['dist/index.js','dist/index.cjs']){if(fs.existsSync(f)){const s=fs.readFileSync(f,'utf8');if(!s.startsWith('\\\"use client\\\"')){fs.writeFileSync(f,'\\\"use client\\\";\\n'+s);}}}\"",
|
|
31
|
+
"build:css": "mkdir -p dist && cp src/styles.css dist/styles.css",
|
|
32
|
+
"dev": "tsup --watch",
|
|
33
|
+
"lint": "echo 'no eslint'",
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"test": "vitest run --passWithNoTests",
|
|
36
|
+
"clean": "rm -rf dist .turbo node_modules"
|
|
37
|
+
},
|
|
28
38
|
"peerDependencies": {
|
|
29
39
|
"react": ">=18",
|
|
30
40
|
"react-dom": ">=18"
|
|
31
41
|
},
|
|
32
42
|
"dependencies": {
|
|
43
|
+
"@lumen-stack/core": "workspace:^",
|
|
33
44
|
"html2canvas-pro": "^1.5.8",
|
|
34
|
-
"sonner": "^1.7.1"
|
|
35
|
-
"@lumen-stack/core": "^0.2.0"
|
|
45
|
+
"sonner": "^1.7.1"
|
|
36
46
|
},
|
|
37
47
|
"devDependencies": {
|
|
38
48
|
"@types/react": "^19.1.0",
|
|
@@ -42,15 +52,5 @@
|
|
|
42
52
|
"tsup": "^8.3.5",
|
|
43
53
|
"typescript": "^5.7.2",
|
|
44
54
|
"vitest": "^2.1.8"
|
|
45
|
-
},
|
|
46
|
-
"scripts": {
|
|
47
|
-
"build": "tsup && pnpm build:directive && pnpm build:css",
|
|
48
|
-
"build:directive": "node -e \"const fs=require('fs');for(const f of ['dist/index.js','dist/index.cjs']){if(fs.existsSync(f)){const s=fs.readFileSync(f,'utf8');if(!s.startsWith('\\\"use client\\\"')){fs.writeFileSync(f,'\\\"use client\\\";\\n'+s);}}}\"",
|
|
49
|
-
"build:css": "mkdir -p dist && cp src/styles.css dist/styles.css",
|
|
50
|
-
"dev": "tsup --watch",
|
|
51
|
-
"lint": "echo 'no eslint'",
|
|
52
|
-
"typecheck": "tsc --noEmit",
|
|
53
|
-
"test": "vitest run --passWithNoTests",
|
|
54
|
-
"clean": "rm -rf dist .turbo node_modules"
|
|
55
55
|
}
|
|
56
|
-
}
|
|
56
|
+
}
|