@codefluss/sandbox 0.0.2-alpha.1 → 0.0.2-alpha.2

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.
Files changed (1) hide show
  1. package/package.json +14 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codefluss/sandbox",
3
- "version": "0.0.2-alpha.1",
3
+ "version": "0.0.2-alpha.2",
4
4
  "description": "Sandbox plugin for securely rendering user-generated HTML/CSS/JavaScript code",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -48,6 +48,10 @@
48
48
  "./components": {
49
49
  "types": "./dist/components/index.d.ts",
50
50
  "default": "./dist/components/index.js"
51
+ },
52
+ "./types/sandbox-types": {
53
+ "types": "./dist/types/sandbox-types.d.ts",
54
+ "default": "./dist/types/sandbox-types.js"
51
55
  }
52
56
  },
53
57
  "files": [
@@ -55,6 +59,14 @@
55
59
  "README.md",
56
60
  "CHANGELOG.md"
57
61
  ],
62
+ "scripts": {
63
+ "build": "tsc",
64
+ "dev": "tsc --watch",
65
+ "test": "vitest",
66
+ "test:watch": "vitest --watch",
67
+ "lint": "biome check src/",
68
+ "format": "biome format --write src/"
69
+ },
58
70
  "keywords": [
59
71
  "sandbox",
60
72
  "iframe",
@@ -104,13 +116,5 @@
104
116
  },
105
117
  "publishConfig": {
106
118
  "access": "public"
107
- },
108
- "scripts": {
109
- "build": "tsc",
110
- "dev": "tsc --watch",
111
- "test": "vitest",
112
- "test:watch": "vitest --watch",
113
- "lint": "biome check src/",
114
- "format": "biome format --write src/"
115
119
  }
116
- }
120
+ }