-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"type": "module",
"name": "urcl-emu-ts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node js/node/urcx-bot.js",
"bundle": "esbuild src/index.ts --bundle --outdir=js --format=esm --sourcemap --loader:.vert=text --loader:.frag=text",
"test-c": "bun run src/node/urcx-c.ts js/test.urcl > js/test.c && gcc js/test.c -g -o js/test && ./js/test",
"bundle-node": "esbuild --platform=node src/node/urcx-emu.ts --bundle --outdir=js --format=esm --sourcemap --loader:.vert=text --loader:.frag=text"
},
"devDependencies": {
"@types/gifencoder": "^2.0.1",
"@types/node": "22.9.0"
},
"dependencies": {
"canvas": "^2.11.2",
"discord.js": "14.16.3",
"esbuild": "0.24.0",
"gifencoder": "^2.0.1",
"node-fetch": "3.3.2"
},
"description": "An IDE for URCL",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/BramOtte/urcl-explorer.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "/~https://github.com/BramOtte/urcl-explorer/issues"
},
"homepage": "/~https://github.com/BramOtte/urcl-explorer#readme"
}