microsoft/TypeAgent
Publicmirrored from https://github.com/microsoft/TypeAgentAvailable
ts/examples/microdataExtract/package.json
38lines · modecode
| 1 | { |
| 2 | "name": "microdata-extract", |
| 3 | "version": "0.0.1", |
| 4 | "private": true, |
| 5 | "description": "Get schema.org microdata from website", |
| 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 | "scripts": { |
| 16 | "build": "npm run tsc", |
| 17 | "clean": "rimraf --glob dist *.tsbuildinfo *.done.build.log", |
| 18 | "prettier": "prettier --check . --ignore-path ../../.prettierignore", |
| 19 | "prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", |
| 20 | "tsc": "tsc -p src" |
| 21 | }, |
| 22 | "dependencies": { |
| 23 | "fs-extra": "^11.3.0", |
| 24 | "puppeteer": "^23.8.0", |
| 25 | "ts-node": "^10.9.1", |
| 26 | "typescript": "^5.4.2" |
| 27 | }, |
| 28 | "devDependencies": { |
| 29 | "@types/fs-extra": "^11.0.4", |
| 30 | "copyfiles": "^2.4.1", |
| 31 | "rimraf": "^6.0.1", |
| 32 | "typescript": "^5.4.2" |
| 33 | }, |
| 34 | "engines": { |
| 35 | "node": ">=18", |
| 36 | "pnpm": ">=8" |
| 37 | } |
| 38 | } |
| 39 | |