scribbletune 5.0.1 → 5.1.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/package.json CHANGED
@@ -1,19 +1,18 @@
1
1
  {
2
2
  "name": "scribbletune",
3
- "version": "5.0.1",
3
+ "version": "5.1.0",
4
4
  "description": "Create music with JavaScript and Node.js!",
5
5
  "main": "./index.js",
6
- "types": "index.d.ts",
6
+ "types": "./dist/index.d.ts",
7
7
  "files": [
8
8
  "dist"
9
9
  ],
10
10
  "exports": {
11
11
  ".": "./dist/index.js",
12
- "./max": "./dist/max.js",
13
12
  "./browser": "./dist/browser.js"
14
13
  },
15
14
  "scripts": {
16
- "clean": "rm -rf dist && rm -rf docs && rm -rf lib && rm -f browser.js* index.d.ts index.js* max.js* typedoc-out.json",
15
+ "clean": "rm -rf dist && rm -rf docs && rm -rf lib && rm -f browser.js* index.d.ts index.js* typedoc-out.json",
17
16
  "doc": "npx typedoc --out docs src/ src/typings.d.ts",
18
17
  "doc:json": "npx typedoc --json typedoc-out.json src",
19
18
  "lint": "eslint src tests -c .eslintrc --ext .ts",
@@ -24,11 +23,9 @@
24
23
  "build:node": "npx webpack --mode=production",
25
24
  "build:browser": "cross-env TARGET=browser npx webpack --mode=production",
26
25
  "build:cdn": "cross-env TARGET=cdn npx webpack --mode=production",
27
- "build:max": "cross-env TARGET=max npx webpack --mode=production",
28
- "build": "npm run build:node && npm run build:browser && npm run build:cdn && npm run build:max",
26
+ "build": "npm run build:node && npm run build:browser && npm run build:cdn",
29
27
  "watch:browser": "cross-env TARGET=browser npx webpack --watch --mode=development",
30
28
  "watch:cdn": "cross-env TARGET=cdn npx webpack --watch --mode=production",
31
- "watch:max": "cross-env TARGET=max npx webpack --watch --mode=production",
32
29
  "watch:node": "npx webpack --watch --mode=production",
33
30
  "prepare": "npm run build",
34
31
  "package": "npm t && npm run build && npm pack",
@@ -84,7 +81,7 @@
84
81
  "url": "https://github.com/scribbletune/scribbletune/issues"
85
82
  },
86
83
  "engines": {
87
- "node": ">8.x.x"
84
+ "node": ">16.x.x"
88
85
  },
89
86
  "publishConfig": {
90
87
  "registry": "https://registry.npmjs.org/"