@vleap/warps-react 0.0.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.
@@ -0,0 +1,20 @@
1
+
2
+ 
3
+ > @vleap/warps-react@0.0.4 build
4
+ > tsup src/index.ts --format cjs,esm --dts --minify
5
+
6
+ CLI Building entry: src/index.ts
7
+ CLI Using tsconfig: tsconfig.json
8
+ CLI tsup v8.3.5
9
+ CLI Target: es6
10
+ CJS Build start
11
+ ESM Build start
12
+ ESM dist/index.mjs 0 B
13
+ ESM ⚡️ Build success in 10ms
14
+ CJS dist/index.js 14.00 B
15
+ CJS ⚡️ Build success in 10ms
16
+ DTS Build start
17
+ DTS ⚡️ Build success in 380ms
18
+ DTS dist/index.d.ts 13.00 B
19
+ DTS dist/index.d.mts 13.00 B
20
+ ⠙
@@ -0,0 +1,10 @@
1
+
2
+ 
3
+ > @vleap/warp-sdk-react@0.1.0 test
4
+ > npm run lint
5
+
6
+ 
7
+ > @vleap/warp-sdk-react@0.1.0 lint
8
+ > eslint "./src/**/*.ts*"
9
+
10
+ ⠙⠙
package/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # @vleap/warps-react
2
+
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - rename package names
8
+ - Updated dependencies
9
+ - @vleap/warps@0.0.4
@@ -0,0 +1,2 @@
1
+
2
+ export { }
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";
package/dist/index.mjs ADDED
File without changes
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@vleap/warps-react",
3
+ "version": "0.0.4",
4
+ "main": "./src/index.tsx",
5
+ "types": "./src/index.tsx",
6
+ "license": "MIT",
7
+ "scripts": {
8
+ "build": "tsup src/index.ts --format cjs,esm --dts --minify",
9
+ "lint": "eslint \"./src/**/*.ts*\"",
10
+ "test": "npm run lint"
11
+ },
12
+ "dependencies": {
13
+ "@vleap/warps": "*"
14
+ },
15
+ "peerDependencies": {
16
+ "react": ">=18.0.0",
17
+ "react-dom": ">=18.0.0"
18
+ },
19
+ "devDependencies": {
20
+ "@types/react": "^18.3.12",
21
+ "@types/react-dom": "^18.3.1",
22
+ "eslint": "^9.14.0",
23
+ "eslint-config-custom": "*",
24
+ "react": "^18.3.1",
25
+ "tsconfig": "*",
26
+ "typescript": "^5.6.3"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public"
30
+ }
31
+ }
package/src/index.ts ADDED
File without changes
package/tsconfig.json ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "extends": "tsconfig/react-library.json",
3
+ "include": ["src"],
4
+ "exclude": ["dist", "build", "node_modules"]
5
+ }