@retoo/scena 0.0.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/LICENSE.md +89 -0
- package/README.md +46 -0
- package/dist/index.d.ts +1235 -0
- package/dist/scena.cjs.js +6958 -0
- package/dist/scena.css +761 -0
- package/dist/scena.css.map +1 -0
- package/dist/scena.es.js +6958 -0
- package/dist/scena.min.cjs.js +1 -0
- package/dist/scena.min.css +1 -0
- package/dist/scena.min.es.js +1 -0
- package/dist/scena.min.umd.js +1 -0
- package/dist/scena.umd.js +6962 -0
- package/package.json +113 -0
package/package.json
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@retoo/scena",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Embeddable video widget for any website. Framework-agnostic, SSR-safe.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cta",
|
|
7
|
+
"cta-video",
|
|
8
|
+
"embeddable",
|
|
9
|
+
"floating-video",
|
|
10
|
+
"interactive-video",
|
|
11
|
+
"player",
|
|
12
|
+
"reel",
|
|
13
|
+
"shoppable-video",
|
|
14
|
+
"short-form-video",
|
|
15
|
+
"social-video",
|
|
16
|
+
"video",
|
|
17
|
+
"video-player",
|
|
18
|
+
"video-reel",
|
|
19
|
+
"video-widget",
|
|
20
|
+
"widget"
|
|
21
|
+
],
|
|
22
|
+
"author": "Retoo <support@retoo.ru>",
|
|
23
|
+
"license": "PolyForm-Shield-1.0.0",
|
|
24
|
+
"homepage": "https://use-retoo.github.io/scena",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/use-retoo/scena"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/use-retoo/scena/issues"
|
|
31
|
+
},
|
|
32
|
+
"type": "module",
|
|
33
|
+
"files": [
|
|
34
|
+
"dist"
|
|
35
|
+
],
|
|
36
|
+
"main": "./dist/scena.cjs.js",
|
|
37
|
+
"module": "./dist/scena.es.js",
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"sideEffects": [
|
|
40
|
+
"./dist/scena.es.js",
|
|
41
|
+
"./dist/scena.cjs.js",
|
|
42
|
+
"./dist/scena.min.umd.js",
|
|
43
|
+
"**/*.css"
|
|
44
|
+
],
|
|
45
|
+
"exports": {
|
|
46
|
+
".": {
|
|
47
|
+
"types": "./dist/index.d.ts",
|
|
48
|
+
"import": "./dist/scena.es.js",
|
|
49
|
+
"require": "./dist/scena.cjs.js"
|
|
50
|
+
},
|
|
51
|
+
"./styles": "./dist/scena.css",
|
|
52
|
+
"./styles/min": "./dist/scena.min.css"
|
|
53
|
+
},
|
|
54
|
+
"publishConfig": {
|
|
55
|
+
"access": "public"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"dev": "vite --config vite.dev.config.ts",
|
|
59
|
+
"build": "npm run build:lib && npm run build:types && npm run build:styles",
|
|
60
|
+
"build:lib": "vite build",
|
|
61
|
+
"build:types": "rollup --config types.config.js",
|
|
62
|
+
"build:styles": "rollup --config styles.config.js",
|
|
63
|
+
"check": "npm run check:svelte && npm run check:node",
|
|
64
|
+
"check:svelte": "svelte-check --tsconfig ./tsconfig.app.json",
|
|
65
|
+
"check:node": "tsc -p tsconfig.node.json",
|
|
66
|
+
"lint": "npm run lint:code && npm run lint:format",
|
|
67
|
+
"lint:code": "eslint .",
|
|
68
|
+
"lint:format": "prettier --check .",
|
|
69
|
+
"format": "prettier --write .",
|
|
70
|
+
"test": "vitest run",
|
|
71
|
+
"test:watch": "vitest",
|
|
72
|
+
"validate": "npm run check && npm run lint",
|
|
73
|
+
"release": "release-it",
|
|
74
|
+
"release:dry": "release-it --dry-run"
|
|
75
|
+
},
|
|
76
|
+
"devDependencies": {
|
|
77
|
+
"@commitlint/cli": "^20.5.0",
|
|
78
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
79
|
+
"@eslint/compat": "^1.4.0",
|
|
80
|
+
"@eslint/js": "^9.39.1",
|
|
81
|
+
"@release-it/conventional-changelog": "^10.0.6",
|
|
82
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
83
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
84
|
+
"@sveltejs/vite-plugin-svelte": "^6.2.1",
|
|
85
|
+
"@tsconfig/svelte": "^5.0.6",
|
|
86
|
+
"@types/node": "^20",
|
|
87
|
+
"autoprefixer": "^10.4.23",
|
|
88
|
+
"eslint": "^9.39.1",
|
|
89
|
+
"eslint-config-prettier": "^10.1.8",
|
|
90
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
91
|
+
"eslint-plugin-import": "^2.32.0",
|
|
92
|
+
"eslint-plugin-svelte": "^3.13.1",
|
|
93
|
+
"globals": "^16.5.0",
|
|
94
|
+
"jsdom": "^28.1.0",
|
|
95
|
+
"lefthook": "^2.1.6",
|
|
96
|
+
"postcss": "^8.5.6",
|
|
97
|
+
"prettier": "^3.7.4",
|
|
98
|
+
"prettier-plugin-svelte": "^3.4.0",
|
|
99
|
+
"release-it": "^19.1.0",
|
|
100
|
+
"rollup-plugin-dts": "^6.3.0",
|
|
101
|
+
"rollup-plugin-scss": "^4.0.1",
|
|
102
|
+
"sass": "^1.97.1",
|
|
103
|
+
"svelte": "^5.53.5",
|
|
104
|
+
"svelte-check": "^4.3.4",
|
|
105
|
+
"typescript": "~5.9.3",
|
|
106
|
+
"typescript-eslint": "^8.48.1",
|
|
107
|
+
"vite": "^7.3.2",
|
|
108
|
+
"vitest": "^4.1.0"
|
|
109
|
+
},
|
|
110
|
+
"overrides": {
|
|
111
|
+
"undici": "^7.0.0"
|
|
112
|
+
}
|
|
113
|
+
}
|