microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c8adde746a7aaa0185fd4eac69af19d259ce1faa

Branches

Tags

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

Clone

HTTPS

Download ZIP

npm/package.json

31lines · 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": "node generate_katas_content.js && node ../node_modules/typescript/bin/tsc -p ./src/tsconfig.json",
24 "tsc:watch": "node ../node_modules/typescript/bin/tsc -p ./src/tsconfig.json --watch"
25 },
26 "type": "module",
27 "files": [
28 "dist",
29 "lib"
30 ]
31}
32