microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
npm/package.json
33lines · modecode
| 1 | { |
| 2 | "name": "qsharp", |
| 3 | "description": "qsharp language package for quantum development", |
| 4 | "version": "0.1.0", |
| 5 | "license": "MIT", |
| 6 | "engines": { |
| 7 | "node": ">=16.17.0" |
| 8 | }, |
| 9 | "repository": { |
| 10 | "type": "git", |
| 11 | "url": "https://github.com/microsoft/qsharp", |
| 12 | "directory": "npm" |
| 13 | }, |
| 14 | "exports": { |
| 15 | ".": { |
| 16 | "browser": "./dist/browser.js", |
| 17 | "node": "./dist/main.js", |
| 18 | "default": "./dist/browser.js" |
| 19 | }, |
| 20 | "./worker": "./dist/worker-browser.js" |
| 21 | }, |
| 22 | "scripts": { |
| 23 | "build": "npm run generate && npm run build:tsc", |
| 24 | "generate": "node generate_katas_content.js && node generate_samples_content.js", |
| 25 | "build:tsc": "node ../node_modules/typescript/bin/tsc -p ./src/tsconfig.json", |
| 26 | "tsc:watch": "node ../node_modules/typescript/bin/tsc -p ./src/tsconfig.json --watch" |
| 27 | }, |
| 28 | "type": "module", |
| 29 | "files": [ |
| 30 | "dist", |
| 31 | "lib" |
| 32 | ] |
| 33 | } |