@ox-content/code-play 3.0.0-alpha.1

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/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@ox-content/code-play",
3
+ "version": "3.0.0-alpha.1",
4
+ "description": "Opt-in Code Play plugin for on-demand documentation sample execution",
5
+ "keywords": [
6
+ "code-play",
7
+ "documentation",
8
+ "markdown",
9
+ "ox-content",
10
+ "playground"
11
+ ],
12
+ "license": "MIT",
13
+ "author": "ubugeeei",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/ubugeeei-prod/ox-content.git",
17
+ "directory": "npm/ox-content-code-play"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "type": "module",
23
+ "main": "./dist/index.mjs",
24
+ "types": "./dist/index.d.mts",
25
+ "exports": {
26
+ ".": {
27
+ "import": "./dist/index.mjs",
28
+ "types": "./dist/index.d.mts"
29
+ },
30
+ "./client": {
31
+ "import": "./dist/hydrate.mjs",
32
+ "types": "./dist/hydrate.d.mts"
33
+ },
34
+ "./plugin": {
35
+ "import": "./dist/plugin.mjs",
36
+ "types": "./dist/plugin.d.mts"
37
+ },
38
+ "./browser": {
39
+ "import": "./dist/browser.mjs",
40
+ "types": "./dist/browser.d.mts"
41
+ }
42
+ },
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^26.2.0",
48
+ "@typescript/native-preview": "^7.0.0-dev.20260707.2",
49
+ "typescript": "^7.0.2",
50
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.2.8",
51
+ "vite-plus": "0.2.9"
52
+ },
53
+ "peerDependencies": {
54
+ "typescript": ">=5.0.0",
55
+ "vite": "^0.2.8 || ^8.0.0"
56
+ },
57
+ "peerDependenciesMeta": {
58
+ "typescript": {
59
+ "optional": true
60
+ },
61
+ "vite": {
62
+ "optional": true
63
+ }
64
+ },
65
+ "scripts": {
66
+ "build": "vp pack && node scripts/bundle-browser.mjs",
67
+ "dev": "vp pack --watch",
68
+ "typecheck": "tsgo --noEmit",
69
+ "test": "vp test src"
70
+ }
71
+ }