microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
source/playground/package.json
14lines · modecode
| 1 | { |
| 2 | "name": "qsharp-playground", |
| 3 | "version": "0.0.0", |
| 4 | "type": "module", |
| 5 | "description": "Web playground for the qsharp compiler", |
| 6 | "private": true, |
| 7 | "license": "MIT", |
| 8 | "scripts": { |
| 9 | "build": "npm run tsc:check && node build.js", |
| 10 | "tsc:check": "node ../../node_modules/typescript/bin/tsc -p ./src/tsconfig.json", |
| 11 | "tsc:watch": "node ../../node_modules/typescript/bin/tsc -p ./src/tsconfig.json --watch --preserveWatchOutput", |
| 12 | "start": "node build.js --serve" |
| 13 | } |
| 14 | } |
| 15 | |