-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "ditto",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"build:watch": "swc src -d dist --watch --source-maps",
"build": "swc src blueprints -d dist --source-maps",
"start": "node dist/src/index.js",
"start:watch": "nodemon dist/src/index.js --watch dist/**/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"nodemonConfig": {
"ignore": [
"src/**"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@lyricalsoul/jsx-runtime": "github:lyricalsoul/jsx-runtime",
"@musicorum/quadro": "^2.0.1",
"@napi-rs/canvas": "^0.1.45",
"@polka/parse": "^1.0.0-next.21",
"@polka/send-type": "^0.5.2",
"@resvg/resvg-js": "^2.6.0",
"chroma-js": "^2.4.2",
"piscina": "^4.3.1",
"polka": "^0.5.2",
"satori": "^0.10.13",
"serve-static": "^1.15.0"
},
"devDependencies": {
"@swc/cli": "^0.3.9",
"@swc/core": "^1.4.1",
"@types/node": "^20.11.17",
"@types/polka": "^0.5.7",
"nodemon": "^3.0.3"
}
}