microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/examples/microdataExtract/package.json
60lines · modecode
| 1 | { |
| 2 | "name": "restaurant-data-cli", |
| 3 | "version": "0.0.1", |
| 4 | "private": true, |
| 5 | "description": "CLI for schema.org restaurant data processing", |
| 6 | "homepage": "https://github.com/microsoft/TypeAgent#readme", |
| 7 | "repository": { |
| 8 | "type": "git", |
| 9 | "url": "https://github.com/microsoft/TypeAgent.git", |
| 10 | "directory": "ts/examples/microdataExtract" |
| 11 | }, |
| 12 | "license": "MIT", |
| 13 | "author": "Microsoft", |
| 14 | "type": "module", |
| 15 | "main": "", |
| 16 | "bin": { |
| 17 | "restaurant-data-cli": "./bin/run.js" |
| 18 | }, |
| 19 | "scripts": { |
| 20 | "build": "npm run tsc", |
| 21 | "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", |
| 22 | "prettier": "prettier --check . --ignore-path ../../.prettierignore", |
| 23 | "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", |
| 24 | "start": "node ./bin/run.js", |
| 25 | "start:dev": "node --loader ts-node/esm --no-warnings=ExperimentalWarning ./bin/dev.js", |
| 26 | "tsc": "tsc -b" |
| 27 | }, |
| 28 | "oclif": { |
| 29 | "bin": "restaurant-data-cli", |
| 30 | "commands": "./dist/commands", |
| 31 | "dirname": "restaurant-data-cli", |
| 32 | "plugins": [ |
| 33 | "@oclif/plugin-help" |
| 34 | ], |
| 35 | "topicSeparator": " ", |
| 36 | "topics": { |
| 37 | "restaurant": { |
| 38 | "description": "Commands for restaurant data processing" |
| 39 | } |
| 40 | } |
| 41 | }, |
| 42 | "dependencies": { |
| 43 | "@oclif/core": "^4.2.10", |
| 44 | "@oclif/plugin-help": "^6", |
| 45 | "fs-extra": "^11.3.0", |
| 46 | "puppeteer": "^23.8.0", |
| 47 | "ts-node": "^10.9.1", |
| 48 | "xml2js": "^0.6.2" |
| 49 | }, |
| 50 | "devDependencies": { |
| 51 | "@types/fs-extra": "^11.0.4", |
| 52 | "@types/xml2js": "^0.4.14", |
| 53 | "copyfiles": "^2.4.1", |
| 54 | "rimraf": "^6.0.1", |
| 55 | "typescript": "~5.4.5" |
| 56 | }, |
| 57 | "engines": { |
| 58 | "node": ">=20" |
| 59 | } |
| 60 | } |
| 61 | |