@italia/video 0.0.1-alpha.0 → 0.1.0-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.
- package/custom-elements.json +33 -7
- package/dist/src/it-video.d.ts +1 -0
- package/dist/src/it-video.d.ts.map +1 -1
- package/dist/src/it-video.js +677 -150
- package/dist/src/it-video.js.map +1 -1
- package/package.json +16 -14
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@italia/video",
|
|
3
3
|
"description": "Web component it-video del Design system .italia",
|
|
4
|
-
"version": "0.0
|
|
4
|
+
"version": "0.1.0-alpha.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"license": "BSD-3-Clause",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/italia/
|
|
11
|
+
"url": "https://github.com/italia/dev-kit-italia.git",
|
|
12
12
|
"directory": "packages/video"
|
|
13
13
|
},
|
|
14
14
|
"author": "Presidenza del Consiglio dei Ministri",
|
|
15
|
-
"homepage": "https://italia.github.io/
|
|
15
|
+
"homepage": "https://italia.github.io/dev-kit-italia",
|
|
16
16
|
"bugs": {
|
|
17
|
-
"url": "https://github.com/italia/
|
|
17
|
+
"url": "https://github.com/italia/dev-kit-italia/issues"
|
|
18
18
|
},
|
|
19
19
|
"type": "module",
|
|
20
20
|
"main": "./dist/src/index.js",
|
|
@@ -27,21 +27,22 @@
|
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"dist/src",
|
|
30
|
+
"styles",
|
|
30
31
|
"README.md",
|
|
31
32
|
"AUTHORS",
|
|
32
33
|
"LICENSE",
|
|
33
|
-
"custom-elements.json"
|
|
34
|
-
"styles"
|
|
34
|
+
"custom-elements.json"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"bootstrap-italia": "github:italia/bootstrap-italia#
|
|
37
|
+
"bootstrap-italia": "github:italia/bootstrap-italia#5ca55d534319deb559e1860fb0bc121113a78ebf",
|
|
38
38
|
"lit": "^3.3.0",
|
|
39
39
|
"video.js": "^8.21.0",
|
|
40
40
|
"videojs-font": "^4.2.0",
|
|
41
|
-
"@italia/
|
|
42
|
-
"@italia/icon": "^0.0
|
|
43
|
-
"@italia/
|
|
44
|
-
"@italia/i18n": "^0.0
|
|
41
|
+
"@italia/accordion": "^0.1.0-alpha.2",
|
|
42
|
+
"@italia/icon": "^0.1.0-alpha.2",
|
|
43
|
+
"@italia/button": "^0.1.0-alpha.2",
|
|
44
|
+
"@italia/i18n": "^0.1.0-alpha.2",
|
|
45
|
+
"@italia/globals": "^0.1.0-alpha.2"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@custom-elements-manifest/analyzer": "^0.10.3",
|
|
@@ -66,8 +67,9 @@
|
|
|
66
67
|
"build": "rollup --config rollup.config.js",
|
|
67
68
|
"clean": "rimraf node_modules .turbo .rollup.cache dist coverage",
|
|
68
69
|
"prepublish": "pnpm build",
|
|
69
|
-
"lint": "eslint --ext .ts \"src/**/*.ts\" \"stories/**/*.ts\" \"test/**/*.ts\" && stylelint \"src/**/*.scss\" && prettier \"src/**/*.ts\" \"stories/**/*.ts\" \"test/**/*.ts\" --check",
|
|
70
|
-
"format": "eslint --ext .ts \"src/**/*.ts\" \"stories/**/*.ts\" \"test/**/*.ts\"
|
|
71
|
-
"test": "wtr --coverage --node-resolve --config web-test-runner.config.js"
|
|
70
|
+
"lint": "eslint --ext .ts \"src/**/*.ts\" \"stories/**/*.ts\" \"test/**/*.ts\" && stylelint \"styles/**/*.scss\" \"src/**/*.scss\" && prettier \"src/**/*.ts\" \"stories/**/*.ts\" \"test/**/*.ts\" --check",
|
|
71
|
+
"format": "eslint --fix --ext .ts \"src/**/*.ts\" \"stories/**/*.ts\" \"test/**/*.ts\" && stylelint --fix \"styles/**/*.scss\" \"src/**/*.scss\" && prettier --write \"src/**/*.ts\" \"stories/**/*.ts\" \"test/**/*.ts\"",
|
|
72
|
+
"test": "wtr --coverage --node-resolve --config web-test-runner.config.js",
|
|
73
|
+
"test:watch": "wtr --coverage --node-resolve --config web-test-runner.config.js --watch"
|
|
72
74
|
}
|
|
73
75
|
}
|