forgeframe 1.0.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.

Potentially problematic release.


This version of forgeframe might be problematic. Click here for more details.

package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "forgeframe",
3
+ "version": "1.0.0",
4
+ "description": "Modern cross-domain iframe component framework - a TypeScript alternative to zoid",
5
+ "type": "module",
6
+ "module": "./dist/forgeframe.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/forgeframe.js"
12
+ }
13
+ },
14
+ "sideEffects": false,
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "scripts": {
19
+ "clean": "rm -rf dist",
20
+ "build": "vite build && tsc --emitDeclarationOnly",
21
+ "typecheck": "tsc --noEmit",
22
+ "test": "vitest",
23
+ "test:run": "vitest run",
24
+ "test:coverage": "vitest run --coverage"
25
+ },
26
+ "keywords": [
27
+ "iframe",
28
+ "cross-domain",
29
+ "component",
30
+ "zoid",
31
+ "postmessage",
32
+ "popup",
33
+ "embed"
34
+ ],
35
+ "author": "Josh Smith",
36
+ "license": "MIT",
37
+ "homepage": "https://github.com/jshsmth/ForgeFrame#readme",
38
+ "bugs": {
39
+ "url": "https://github.com/jshsmth/ForgeFrame/issues"
40
+ },
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/jshsmth/ForgeFrame.git"
44
+ }
45
+ }