smooth-player 1.0.0 → 1.0.4

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.
Files changed (1) hide show
  1. package/package.json +21 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smooth-player",
3
- "version": "1.0.0",
3
+ "version": "1.0.4",
4
4
  "description": "Typed audio player with spectrum and waveform analyzers",
5
5
  "type": "module",
6
6
  "workspaces": [
@@ -14,7 +14,10 @@
14
14
  "types": "./dist/index.d.ts",
15
15
  "import": "./dist/index.js",
16
16
  "require": "./dist-cjs/index.js"
17
- }
17
+ },
18
+ "./dist/smooth-player.css": "./dist/smooth-player.css",
19
+ "./assets/*": "./assets/*",
20
+ "./styles/*": "./styles/*"
18
21
  },
19
22
  "files": [
20
23
  "dist",
@@ -33,7 +36,14 @@
33
36
  "typecheck": "tsc --noEmit",
34
37
  "demo": "npm run build && node scripts/demo-server.mjs",
35
38
  "workspaces:build": "npm run -ws --if-present build",
36
- "workspaces:typecheck": "npm run -ws --if-present typecheck"
39
+ "workspaces:typecheck": "npm run -ws --if-present typecheck",
40
+ "release:patch": "npm version patch --workspaces --include-workspace-root --no-git-tag-version",
41
+ "release:minor": "npm version minor --workspaces --include-workspace-root --no-git-tag-version",
42
+ "release:major": "npm version major --workspaces --include-workspace-root --no-git-tag-version",
43
+ "publish:core": "npm publish",
44
+ "publish:react": "npm publish -w @smooth-player/react --access public",
45
+ "publish:vue": "npm publish -w @smooth-player/vue --access public",
46
+ "publish:svelte": "npm publish -w @smooth-player/svelte --access public"
37
47
  },
38
48
  "keywords": [
39
49
  "audio-player",
@@ -43,6 +53,14 @@
43
53
  "web-audio"
44
54
  ],
45
55
  "license": "MIT",
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "https://github.com/marlenesco/smooth-player"
59
+ },
60
+ "homepage": "https://github.com/marlenesco/smooth-player",
61
+ "bugs": {
62
+ "url": "https://github.com/marlenesco/smooth-player/issues"
63
+ },
46
64
  "devDependencies": {
47
65
  "sass": "^1.93.2",
48
66
  "typescript": "^5.7.3"