-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (90 loc) · 2.68 KB
/
package.json
File metadata and controls
93 lines (90 loc) · 2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "music21j",
"version": "0.21.3",
"description": "A toolkit for computer-aided musicology, JavaScript version",
"_main_etc": "these are the legacy urls; exports:. is the modern standard",
"main": "releases/music21.debug.js",
"module": "releases/music21.es.js",
"typings": "releases/src/main.d.ts",
"style": "releases/music21j.css",
"exports": {
".": {
"import": "./releases/music21.es.js",
"types": "./releases/src/main.d.ts",
"default": "./releases/music21.debug.js"
}
},
"files": [
"/css",
"/releases",
"/scripts",
"/webResources"
],
"dependencies": {
"array-equal": "^2.0.0",
"deep-equal": "^2.2.3",
"jsonpickle": "^1.2.0",
"midicube": "^0.9.2",
"vexflow": "^4.2.3"
},
"_why": {
"@types/jquery": "Still allow JQuery to be used as input even though it is no longer part of the system",
"@types/node": "for the node scripts in tests: headless_vite_tests and run_qunit_playwright",
"eslint-plugin-import": "Used in flat eslint-config-airbnb-extended legacy.js",
"globals": "for eslint.config.js"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/deep-equal": "^1.0.4",
"@types/jquery": "^3.5.32",
"@types/node": "^25.0.3",
"@types/qunit": "^2.19.13",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.32.0",
"eslint-config-airbnb-extended": "^2.3.3",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"npm-check-updates": "^19.2.0",
"qunit": "^2.24.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-directory-index": "^3.0.1"
},
"directories": {
"test": "tests"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly",
"build:all": "npm run build && npm run build:types",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src && eslint tests/moduleTests",
"prepublishOnly": "./scripts/prepublishOnly.bash",
"test:qunit": "tsx tests/run_qunit_playwright.ts",
"test": "tsx tests/headless_vite_tests.ts",
"postinstall": "./scripts/postinstall.bash"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuthbertLab/music21j.git"
},
"keywords": [
"music",
"theory",
"musicology",
"notation"
],
"author": {
"name": "Michael Scott Asato Cuthbert",
"email": "michael.asato.cuthbert@gmail.com",
"url": "https://www.trecento.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/cuthbertLab/music21j/issues"
}
}