{
  "name": "vscode-webview-tools",
  "version": "0.1.1",
  "description": "Miscellaneous tools for building things in VS Code webviews",
  "main": "dist/pkg/index.js",
  "module": "dist/pkg/index.js",
  "sideEffects": false,
  "scripts": {
    "codegen": "npm run compile && node dist/build/enumerate-colors",
    "prepublishOnly": "npm run clean && npm run compile",
    "clean": "rimraf dist",
    "compile": "tsc -b",
    "watch": "tsc -b --watch",
    "test": "npm run test:lint && npm run test:fmt && tsc --composite false --noEmit",
    "test:lint": "eslint \"src/**/*.ts\"",
    "test:fmt": "prettier --list-different \"src/**/*.ts\"",
    "fmt": "remark readme.md -f -o readme.md && prettier --write \"src/**/*.ts\" readme.md && npm run test:lint -- --fix"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/connor4312/vscode-webview-tools.git"
  },
  "keywords": [
    "vscode",
    "webview",
    "colors",
    "themes"
  ],
  "author": "Connor Peet <connor@peet.io>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/connor4312/vscode-webview-tools/issues"
  },
  "homepage": "https://github.com/connor4312/vscode-webview-tools#readme",
  "devDependencies": {
    "@types/prettier": "^2.1.1",
    "@types/signale": "^1.4.1",
    "@types/wordwrap": "^1.0.0",
    "@typescript-eslint/eslint-plugin": "^4.2.0",
    "@typescript-eslint/parser": "^4.2.0",
    "eslint": "^7.9.0",
    "pascal-case": "^3.1.1",
    "prettier": "^2.1.2",
    "remark-cli": "^8.0.1",
    "remark-toc": "^7.0.0",
    "rimraf": "^3.0.2",
    "signale": "^1.4.0",
    "typescript": "^4.0.3",
    "wordwrap": "^1.0.0"
  },
  "prettier": {
    "trailingComma": "all",
    "singleQuote": true,
    "printWidth": 100,
    "tabWidth": 2
  }
}
