Newer
Older
imgui-js / package.json
@Isaac Burns Isaac Burns on 11 Sep 2019 1 KB update dependencies and rebuild
{
  "name": "imgui-js",
  "version": "1.0.0",
  "description": "JavaScript bindings for Dear ImGui using Emscripten and TypeScript",
  "main": "imgui.js",
  "types": "imgui.ts",
  "scripts": {
    "build": "make build-bind-imgui && npm run build-imgui",
    "clean": "make clean-bind-imgui && npm run clean-imgui",
    "watch": "npm run watch-example",
    "start": "npm run start-example",
    "dist": "rollup -c",
    "build-imgui": "tsc",
    "watch-imgui": "tsc --watch",
    "clean-imgui": "echo TODO: clean-imgui",
    "build-example": "tsc -p example",
    "watch-example": "tsc -p example --watch",
    "clean-example": "echo TODO: clean-example",
    "start-example": "npm run start-example-html",
    "start-example-html": "echo http://localhost:8080/example/index.html && http-server -c-1 -o",
    "start-example-node": "node example/index.js",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "Isaac Burns <isaacburns@gmail.com>",
  "license": "MIT",
  "dependencies": {
    "@types/emscripten": "^1.38.0",
    "@types/node": "^12.6.7",
    "@types/systemjs": "^0.20.6"
  },
  "devDependencies": {
    "http-server": "^0.11.1",
    "node-fetch": "^2.6.0",
    "rollup": "^1.17.0",
    "rollup-plugin-commonjs": "^10.0.1",
    "rollup-plugin-node-builtins": "^2.1.2",
    "rollup-plugin-typescript2": "^0.24.1",
    "systemjs": "^0.21.6",
    "typescript": "^3.5.3"
  }
}