-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.56 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.56 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
{
"name": "vextab",
"version": "4.0.4",
"author": {
"name": "Mohit Muthanna Cheppudira",
"email": "mohit@muthanna.com",
"url": "http://muthanna.com"
},
"main": "dist/main.prod.js",
"description": "A VexTab Parser for VexFlow",
"repository": {
"type": "git",
"url": "https://github.com/0xfe/vextab.git"
},
"license": "LicenseRef-LICENSE",
"dependencies": {
"vexflow": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@eslint/js": "^9.39.2",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"babel-loader": "^10.0.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.2",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-webpack-plugin": "^5.0.2",
"git-revision-webpack-plugin": "^5.0.0",
"globals": "^17.0.0",
"grunt": "^1.6.1",
"grunt-bump": "0.8.0",
"grunt-cli": "^1.5.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-qunit": "^10.1.1",
"grunt-contrib-watch": "^1.1.0",
"grunt-git": "^1.1.1",
"grunt-webpack": "^7.0.1",
"html-webpack-plugin": "^5.6.6",
"jison": "^0.4.18",
"jison-loader": "^1.0.0",
"qunit": "^2.25.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"zepto-webpack": "^1.2.1"
},
"bugs": {
"url": "https://github.com/0xfe/vexflow/issues"
},
"scripts": {
"build": "webpack --progress --mode production --env NODE_ENV=production --env TAG_NAME=prod --config webpack.config.js",
"build-dev": "webpack --progress --mode development --env NODE_ENV=development --env TAG_NAME=dev --config webpack.config.js",
"start": "WATCHPACK_POLLING=1 webpack serve --progress --mode development --port 9005 --env NODE_ENV=development --env TAG_NAME=dev --config webpack.config.js",
"serve": "npx http-server -c 1 -p 8052",
"watch": "WATCHPACK_POLLING=1 webpack -w --progress --mode development --env NODE_ENV=development --env TAG_NAME=dev --config webpack.config.js",
"clean": "rm -rf ./dist/*"
},
"homepage": "http://www.vexflow.com/vextab/",
"keywords": [
"music",
"notation",
"guitar",
"tablature"
]
}