-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.74 KB
/
package.json
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
{
"name": "lotus",
"private": false,
"version": "0.8.38",
"description": "Lotus is a sheet music toolset, an enhancement of LilyPond.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"browser": "lib.browser/lotus.umd.js",
"scripts": {
"start": "ts-node --project ./tsconfig.node.json ./main.ts",
"dev": "ts-node-dev --project ./tsconfig.node.json ./main.ts",
"dev:inspect": "ts-node-dev --project ./tsconfig.node.json --inspect -- ./main.ts",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:lib": "vue-cli-service build --target lib --dest lib.browser index.browser.ts && tsc --build ./tsconfig.node.json && ts-node --project ./tsconfig.node.json ./tools/buildJisonParser.ts",
"ts-run": "ts-node --project ./tsconfig.node.json",
"ts-dev": "ts-node-dev --project ./tsconfig.node.json",
"ts-dev:inspect": "ts-node-dev --project ./tsconfig.node.json --inspect --"
},
"author": "K.L.",
"license": "ISC",
"dependencies": {
"@k-l-lambda/music-widgets": "^0.3.36",
"crc-32": "^1.2.0",
"jison": "^0.4.18",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@k-l-lambda/web-editor": "^0.1.1",
"@types/child-process-promise": "^2.2.1",
"@types/events": "^3.0.0",
"@types/express": "^4.17.3",
"@types/lodash": "^4.14.160",
"@types/node": "^14.0.13",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-eslint": "^4.2.3",
"@vue/cli-plugin-typescript": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.0.2",
"babel-eslint": "^10.1.0",
"canvas": "^2.6.1",
"child-process-promise": "^2.2.1",
"comlink-loader": "^2.0.0",
"diff": "^4.0.2",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"express": "^4.17.1",
"formidable": "^1.2.2",
"http": "^0.0.0",
"jszip": "^3.5.0",
"liyad": "^0.4.1",
"lodash": "^4.17.15",
"node-sass": "^4.13.1",
"prismjs": "^1.20.0",
"sass-loader": "^8.0.2",
"serve-handler": "^6.1.3",
"sha1": "^1.1.1",
"ts-node": "^8.7.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3",
"vue": "^2.6.11",
"vue-prism-editor": "^1.2.2",
"vue-resize-directive": "^1.2.0",
"vue-template-compiler": "^2.6.11",
"yaml": "^1.10.0",
"yargs": "^15.3.1"
},
"resolutions": {
"@types/node": "22.6.1",
"@vue/babel-preset-app": "4.5.19",
"@vue/compiler-ssr": "3.5.8",
"@babel/parser": "7.25.6",
"caniuse-lite": "1.0.30001663",
"v8-compile-cache": "2.4.0",
"pump": "3.0.2",
"split-string": "3.1.0",
"psl": "1.9.0"
}
}