@tspro/web-music-score 1.0.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 ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@tspro/web-music-score",
3
+ "version": "1.0.0",
4
+ "author": "PahkaSoft",
5
+ "license": "MIT",
6
+ "private": false,
7
+ "bugs": {
8
+ "url": "https://github.com/pahkasoft/issues/issues/new"
9
+ },
10
+ "description": "Web component for viewing and playing musical scores/notations.",
11
+ "main": "dist/index.cjs.js",
12
+ "module": "dist/index.esm.mjs",
13
+ "browser": "dist/index.umd.min.js",
14
+ "unpkg": "dist/index.umd.min.js",
15
+ "types": "dist/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "require": "./dist/index.cjs.js",
19
+ "import": "./dist/index.esm.mjs",
20
+ "browser": "./dist/index.umd.min.js",
21
+ "types": "./dist/index.d.ts"
22
+ }
23
+ },
24
+ "dependencies": {
25
+ "@tspro/ts-utils-lib": "^1.0.1",
26
+ "tone": "^15.1.22"
27
+ },
28
+ "peerDependencies": {
29
+ "react": "^19.1.0"
30
+ },
31
+ "devDependencies": {
32
+ "@babel/cli": "^7.27.2",
33
+ "@babel/core": "^7.27.7",
34
+ "@babel/preset-env": "^7.27.2",
35
+ "@babel/preset-react": "^7.27.1",
36
+ "@microsoft/api-extractor": "^7.52.8",
37
+ "@types/react": "^19.1.8",
38
+ "@types/react-dom": "^19.1.6",
39
+ "@webpack-cli/serve": "^3.0.1",
40
+ "api-extractor": "^99.99.99",
41
+ "babel-loader": "^10.0.0",
42
+ "benchmark": "^2.1.4",
43
+ "clean-webpack-plugin": "^4.0.0",
44
+ "css-loader": "^7.1.2",
45
+ "npm-watch": "^0.13.0",
46
+ "rimraf": "^6.0.1",
47
+ "style-loader": "^4.0.0",
48
+ "terser-webpack-plugin": "^5.3.14",
49
+ "ts-loader": "^9.5.2",
50
+ "typedoc": "^0.28.6",
51
+ "typescript": "^5.8.3",
52
+ "url-loader": "^4.1.1",
53
+ "webpack": "^5.99.9",
54
+ "webpack-cli": "^6.0.1",
55
+ "webpack-dev-server": "^5.2.2"
56
+ },
57
+ "watch": {
58
+ "build:esm": {
59
+ "patterns": [
60
+ "src"
61
+ ],
62
+ "extensions": "ts,tsx",
63
+ "quiet": false
64
+ }
65
+ },
66
+ "scripts": {
67
+ "build:types": "tsc --project tsconfig.types.json && api-extractor run --local && rimraf dist/temp-types",
68
+ "build:dev": "rimraf dist && npm run build:types && webpack --mode development --progress",
69
+ "build:prod": "rimraf dist && npm run build:types && webpack --mode production --progress",
70
+ "build:esm": "rimraf dist && npm run build:types && webpack --env target=esm --mode development --progress",
71
+ "watch": "npm-watch",
72
+ "docs": "typedoc"
73
+ },
74
+ "browserslist": [
75
+ "defaults"
76
+ ]
77
+ }