{
  "name": "cicada-lang",
  "version": "0.3.14",
  "repository": "github:cicada-lang/cicada",
  "files": [
    "lib"
  ],
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "format": "prettier src --write",
    "test:js": "enchanter test node 'lib/**/*.test.js'",
    "test:snapshot": "enchanter snapshot node 'lib/**/*.snapshot.js' --extern snapshot",
    "test:cicada": "enchanter test './bin/cic.js snapshot' 'tests/**/*.(cic|md)'",
    "test:papers": "enchanter test './bin/cic.js' 'papers/**/*.(cic|md)'",
    "test:books": "enchanter test './bin/cic.js check' 'books/**/book.json'",
    "test": "npm-run-all test:*",
    "dist:linux": "pkg package.json --no-bytecode --public --public-packages '*' --target linux --output dist/cic && pushd dist && sha256sum cic > cic.sha256sum && popd",
    "dist:macos": "pkg package.json --no-bytecode --public --public-packages '*' --target macos --output dist/cic-macos && pushd dist && sha256sum cic-macos > cic-macos.sha256sum && popd",
    "dist:win": "pkg package.json --no-bytecode --public --public-packages '*' --target win --output dist/cic-win.exe && pushd dist && sha256sum cic-win.exe > cic-win.exe.sha256sum && popd",
    "dist": "npm-run-all dist:*"
  },
  "prettier": {
    "semi": false,
    "trailingComma": "es5"
  },
  "bin": {
    "cic": "bin/cic.js"
  },
  "devDependencies": {
    "@types/commonmark": "^0.27.5",
    "@types/nanoid": "^2.1.0",
    "@types/node": "^16.10.3",
    "npm-run-all": "^4.1.5",
    "pkg": "^5.3.3",
    "prettier": "^2.4.1",
    "typescript": "^4.4.3"
  },
  "dependencies": {
    "@cicada-lang/partech": "^0.1.15",
    "@xieyuheng/enchanter": "^0.0.13",
    "@xieyuheng/ty": "^0.1.7",
    "commonmark": "^0.30.0",
    "fast-deep-equal": "^3.1.3",
    "nanoid": "^3.1.29",
    "node-watch": "^0.7.2",
    "picocolors": "^0.2.1",
    "readdirp": "^3.6.0"
  },
  "license": "GPL-3.0-or-later"
}
