-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.18 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.18 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
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "amll-editor",
"displayName": "AMLL Editor",
"version": "0.0.0",
"private": true,
"license": "AGPL-3.0-only",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"repository": "https://github.com/amll-dev/amll-editor",
"scripts": {
"dev": "run-p dev-only i18n",
"dev-only": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix --cache",
"format": "prettier --write src/",
"knip": "knip",
"dict-rebuild": "python pipelines/prosoticDictGen/scripts/corrected2csv.py && tsx pipelines/prosoticDictGen/scripts/csv2dictJson.ts",
"i18n": "typesafe-i18n"
},
"dependencies": {
"@applemusic-like-lyrics/core": "^0.2.0",
"@applemusic-like-lyrics/vue": "^0.2.0",
"@codemirror/commands": "^6.10.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.16",
"@mdi/font": "^7.4.47",
"@pixi/app": "^7.4.3",
"@pixi/core": "^7.4.3",
"@pixi/display": "^7.4.3",
"@pixi/filter-blur": "^7.4.3",
"@pixi/filter-bulge-pinch": "^5.1.1",
"@pixi/filter-color-matrix": "^7.4.3",
"@pixi/sprite": "^7.4.3",
"@primeuix/themes": "^1.2.5",
"@vueuse/core": "^14.2.1",
"codemirror": "^6.0.2",
"compromise": "^14.15.0",
"compromise-speech": "^0.1.1",
"compromise-syllables": "^0.0.6",
"d3-scale-chromatic": "^3.1.0",
"floating-vue": "^5.2.2",
"json-stable-stringify": "^1.3.0",
"jss": "^10.10.0",
"jss-preset-default": "^10.10.0",
"jszip": "^3.10.1",
"lodash-es": "^4.17.23",
"mitt": "^3.0.1",
"nanoid": "^5.1.6",
"pinia": "^3.0.4",
"primeicons": "^7.0.0",
"primevue": "^4.5.4",
"pyodide": "^0.29.3",
"save-file": "^2.3.1",
"silabas": "^1.0.3",
"syllabify": "^1.0.1",
"syllabify-fr": "^1.0.1",
"typesafe-i18n": "^5.27.1",
"virtua": "^0.46.7",
"vue": "^3.5.29",
"vue-draggable-plus": "^0.6.1",
"wavesurfer.js": "^7.12.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@tsconfig/node22": "^22.0.5",
"@types/d3-scale-chromatic": "^3.1.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.19.13",
"@types/wicg-file-system-access": "^2023.10.7",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.8.1",
"chalk": "^5.6.2",
"dotenv": "^17.3.1",
"eslint": "^9.39.3",
"eslint-plugin-vue": "~10.6.2",
"knip": "^5.85.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"rollup-plugin-visualizer": "^6.0.11",
"sass-embedded": "^1.97.3",
"simple-git": "^3.32.3",
"typescript": "~5.9.3",
"vite": "7.3.1",
"vite-plugin-static-copy": "^3.2.0",
"vue-tsc": "^3.2.5"
},
"pnpm": {
"patchedDependencies": {
"@types/wicg-file-system-access": "patches/@types__wicg-file-system-access.patch"
},
"ignoredBuiltDependencies": [
"@applemusic-like-lyrics/core",
"@applemusic-like-lyrics/vue",
"@parcel/watcher",
"esbuild"
]
}
}