@pokedemo/player 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.
- package/LICENSE +481 -0
- package/README.md +154 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.ts +452 -0
- package/dist/index.js +1 -0
- package/dist/pokeplayer.css +1 -0
- package/dist/react.cjs +1 -0
- package/dist/react.d.ts +34 -0
- package/dist/react.js +1 -0
- package/dist/replay-BYaBnfwG.js +1 -0
- package/dist/replay-D0qUB_uv.cjs +1 -0
- package/dist/vue.cjs +1 -0
- package/dist/vue.d.ts +75 -0
- package/dist/vue.js +1 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pokedemo/player",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "PokeDemo interactive demo player SDK",
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public"
|
|
9
|
+
},
|
|
10
|
+
"main": "./dist/index.cjs",
|
|
11
|
+
"module": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"require": "./dist/index.cjs"
|
|
18
|
+
},
|
|
19
|
+
"./react": {
|
|
20
|
+
"types": "./dist/react.d.ts",
|
|
21
|
+
"import": "./dist/react.js",
|
|
22
|
+
"require": "./dist/react.cjs"
|
|
23
|
+
},
|
|
24
|
+
"./vue": {
|
|
25
|
+
"types": "./dist/vue.d.ts",
|
|
26
|
+
"import": "./dist/vue.js",
|
|
27
|
+
"require": "./dist/vue.cjs"
|
|
28
|
+
},
|
|
29
|
+
"./style.css": "./dist/pokeplayer.css",
|
|
30
|
+
"./dist/pokeplayer.css": "./dist/pokeplayer.css"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"LICENSE",
|
|
35
|
+
"README.md"
|
|
36
|
+
],
|
|
37
|
+
"sideEffects": [
|
|
38
|
+
"./dist/pokeplayer.css"
|
|
39
|
+
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"dev": "bunx --bun vite",
|
|
42
|
+
"build:js": "bunx --bun vite build",
|
|
43
|
+
"build:types:raw": "bunx --bun tsc -b tsconfig.build.json --force",
|
|
44
|
+
"build:types:bundle": "bunx --bun rollup -c rollup.dts.config.mjs",
|
|
45
|
+
"third-party:update": "bun scripts/update-third-party-notices.mjs",
|
|
46
|
+
"third-party:check": "bun scripts/check-third-party-notices.mjs",
|
|
47
|
+
"build": "bun run build:js && bun run build:types:raw && bun run build:types:bundle && bun scripts/clean-types.mjs && bun run third-party:check && bun scripts/check-dist.mjs",
|
|
48
|
+
"check:dist": "bun scripts/check-dist.mjs",
|
|
49
|
+
"lint": "bunx --bun eslint ",
|
|
50
|
+
"prepack": "bun run build",
|
|
51
|
+
"prepublishOnly": "bun run third-party:check && bun scripts/check-dist.mjs",
|
|
52
|
+
"preview": "bunx --bun vite preview"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"@rrweb/replay": "2.0.0-alpha.20"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"react": ">=18",
|
|
59
|
+
"react-dom": ">=18",
|
|
60
|
+
"vue": ">=3"
|
|
61
|
+
},
|
|
62
|
+
"peerDependenciesMeta": {
|
|
63
|
+
"react": {
|
|
64
|
+
"optional": true
|
|
65
|
+
},
|
|
66
|
+
"react-dom": {
|
|
67
|
+
"optional": true
|
|
68
|
+
},
|
|
69
|
+
"vue": {
|
|
70
|
+
"optional": true
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"devDependencies": {
|
|
74
|
+
"@vue/server-renderer": "3.5.28",
|
|
75
|
+
"@eslint/js": "9.39.2",
|
|
76
|
+
"@rrweb/types": "2.0.0-alpha.20",
|
|
77
|
+
"@types/node": "24.10.13",
|
|
78
|
+
"@types/react": "19.2.14",
|
|
79
|
+
"@types/react-dom": "19.2.3",
|
|
80
|
+
"eslint": "9.39.2",
|
|
81
|
+
"esbuild": "0.25.12",
|
|
82
|
+
"globals": "16.5.0",
|
|
83
|
+
"happy-dom": "20.6.1",
|
|
84
|
+
"react": "19.2.4",
|
|
85
|
+
"react-dom": "19.2.4",
|
|
86
|
+
"rollup": "4.57.1",
|
|
87
|
+
"rollup-plugin-dts": "6.3.0",
|
|
88
|
+
"terser": "5.46.0",
|
|
89
|
+
"typescript": "5.9.3",
|
|
90
|
+
"typescript-eslint": "8.55.0",
|
|
91
|
+
"vite": "7.3.1",
|
|
92
|
+
"vue": "3.5.28"
|
|
93
|
+
}
|
|
94
|
+
}
|