-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 963 Bytes
/
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
{
"name": "music.madefor.cc",
"version": "1.0.0",
"description": "Converts audio files to the DFPWM1a format",
"author": "SquidDev",
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@rollup/plugin-html": "^1.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.0.0",
"@tsconfig/svelte": "^5.0.0",
"autoprefixer": "^10.4.0",
"rollup": "^4.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.0.0",
"svelte": "^4.0.0",
"svelte-check": "^3.0.0",
"svelte-preprocess": "^6.0.0",
"tailwindcss": "^3.0.0",
"tslib": "^2.0.0",
"typescript": "^5.0.0"
},
"prettier": {
"printWidth": 120
},
"files": [
"_build"
]
}