rj-player 1.0.0 → 1.0.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.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,24 +1,60 @@
1
- {
2
- "name": "rj-player",
3
- "version": "1.0.0",
4
- "private": false,
5
- "main": "index.js",
6
- "module": "index.esm.js",
7
- "files": [
8
- "dist"
9
- ],
10
- "style": "css/style.css",
11
- "scripts": {
12
- },
13
- "dependencies": {
1
+ {
2
+ "name": "rj-player",
3
+ "version": "1.0.2",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "license": "MIT",
7
+ "devDependencies": {
8
+ "vue": "^3.2.33"
9
+ },
10
+ "dependencies": {
11
+ "bytenode": "^1.5.6",
12
+ "crypto-js": "^4.1.1",
14
13
  "dfish-widget": "^1.1.2",
15
- "element-plus": "^2.8.3"
16
- },
17
- "devDependencies": {
18
- },
19
- "browserslist": [
20
- "> 1%",
21
- "last 2 versions",
22
- "not dead"
23
- ]
24
- }
14
+ "element-plus": "^2.8.3"
15
+ },
16
+ "sideEffects": false,
17
+ "release-it": {
18
+ "git": {
19
+ "commitMessage": "chore(release): v${version}",
20
+ "push": true,
21
+ "commit": true,
22
+ "tag": true,
23
+ "requireCommits": false,
24
+ "requireCleanWorkingDir": false
25
+ },
26
+ "github": {
27
+ "release": true,
28
+ "draft": true
29
+ },
30
+ "npm": {
31
+ "publish": false,
32
+ "ignoreVersion": false
33
+ },
34
+ "plugins": {
35
+ "@release-it/conventional-changelog": {
36
+ "preset": "angular",
37
+ "infile": "CHANGELOG.md",
38
+ "header": "# Changelog"
39
+ }
40
+ },
41
+ "hooks": {
42
+ "before:init": "npm test",
43
+ "after:bump": "gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json",
44
+ "before:release": "npm run release:changelog:fix",
45
+ "after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
46
+ }
47
+ },
48
+ "commitlint": {
49
+ "rules": {
50
+ "header-max-length": [
51
+ 2,
52
+ "always",
53
+ 130
54
+ ]
55
+ },
56
+ "extends": [
57
+ "@commitlint/config-conventional"
58
+ ]
59
+ }
60
+ }
package/usePlayer.jsc ADDED
Binary file