microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
508fb90401be5e3bb2a4a7e36d030d5b2639318f

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

npm/package.json

23lines · 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 "./node": "./dist/node.js",
16 "./browser": "./dist/browser.js"
17 },
18 "scripts":{
19 "build": "node generate_katas_content.js && node ../node_modules/typescript/bin/tsc -p ./src/tsconfig.json"
20 },
21 "type": "module",
22 "files": ["dist", "lib"]
23}
24