-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 934 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
{
"name": "imgui-dom",
"version": "0.0.1",
"description": "An example of how to create immediate mode GUI web applications using DOM manipulation",
"main": "app.js",
"scripts": {
"start:counter": "nodemon --watch examples/counter --watch src --exec 'http-server . -p 8080 -o /examples/counter' -e html,js,json",
"start:todo": "nodemon --watch examples/todo --watch src --exec 'http-server . -p 8080 -o /examples/todo' -e html,js,json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhalsim/imgui-dom.git"
},
"devDependencies": {
"http-server": "14.1.1",
"nodemon": "3.1.0"
},
"keywords": [
"imgui",
"dom",
"immediate",
"mode",
"web",
"browser",
"javascript"
],
"author": "dhalsim",
"license": "MIT",
"bugs": {
"url": "https://github.com/dhalsim/imgui-dom/issues"
},
"homepage": "https://github.com/dhalsim/imgui-dom#readme"
}