@edgestore/shared 0.1.5-alpha.14

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/README.md ADDED
@@ -0,0 +1 @@
1
+ # Internal Shared Package for Edge Store
@@ -0,0 +1,2 @@
1
+ export type Test = 'test';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,IAAI,GAAG,MAAM,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ 'use strict';
2
+
package/dist/index.mjs ADDED
@@ -0,0 +1 @@
1
+
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@edgestore/shared",
3
+ "version": "0.1.5-alpha.14",
4
+ "description": "Upload files with ease from React/Next.js",
5
+ "homepage": "https://edgestore.dev",
6
+ "repository": "https://github.com/edgestorejs/edgestore.git",
7
+ "author": "Ravi <me@ravi.com>",
8
+ "main": "dist/index.js",
9
+ "module": "dist/index.mjs",
10
+ "typings": "dist/index.d.ts",
11
+ "keywords": [
12
+ "react",
13
+ "nodejs",
14
+ "nextjs",
15
+ "upload",
16
+ "file",
17
+ "image",
18
+ "cdn",
19
+ "edgestore",
20
+ "edge-store"
21
+ ],
22
+ "scripts": {
23
+ "build": "rollup --config rollup.config.ts --configPlugin rollup-plugin-swc3",
24
+ "dev": "pnpm build --watch",
25
+ "codegen:entrypoints": "tsx entrypoints.script.ts",
26
+ "lint": "eslint --cache --ext \".js,.ts,.tsx\" --ignore-path ../../.gitignore --report-unused-disable-directives src"
27
+ },
28
+ "exports": {
29
+ "./package.json": "./package.json",
30
+ ".": {
31
+ "import": "./dist/index.mjs",
32
+ "require": "./dist/index.js",
33
+ "default": "./dist/index.js"
34
+ }
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "src",
39
+ "README.md",
40
+ "package.json",
41
+ "!**/*.test.*"
42
+ ],
43
+ "private": false,
44
+ "publishConfig": {
45
+ "access": "public"
46
+ },
47
+ "license": "MIT",
48
+ "peerDependencies": {
49
+ "react": ">=16.8.0",
50
+ "react-dom": ">=16.8.0"
51
+ },
52
+ "devDependencies": {
53
+ "@types/node": "^18.11.18",
54
+ "react": "^18.2.0",
55
+ "react-dom": "^18.2.0",
56
+ "typescript": "^5.1.6"
57
+ },
58
+ "gitHead": "443a96fea331ba76622c2a428e1dd41db2694eeb"
59
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export type Test = 'test';