qasm-ts 2.1.1 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CITATION.cff +34 -0
- package/package.json +1 -1
- package/readme.md +15 -10
package/CITATION.cff
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
cff-version: "1.2.0"
|
|
2
|
+
authors:
|
|
3
|
+
- family-names: Kim
|
|
4
|
+
given-names: Sean
|
|
5
|
+
orcid: "https://orcid.org/0009-0006-1223-1895"
|
|
6
|
+
- family-names: Edwards
|
|
7
|
+
given-names: Marcus
|
|
8
|
+
orcid: "https://orcid.org/0000-0001-6591-9585"
|
|
9
|
+
doi: 10.5281/zenodo.17144767
|
|
10
|
+
message: If you use this software, please cite our article in the
|
|
11
|
+
Journal of Open Source Software.
|
|
12
|
+
preferred-citation:
|
|
13
|
+
authors:
|
|
14
|
+
- family-names: Kim
|
|
15
|
+
given-names: Sean
|
|
16
|
+
orcid: "https://orcid.org/0009-0006-1223-1895"
|
|
17
|
+
- family-names: Edwards
|
|
18
|
+
given-names: Marcus
|
|
19
|
+
orcid: "https://orcid.org/0000-0001-6591-9585"
|
|
20
|
+
date-published: 2025-09-17
|
|
21
|
+
doi: 10.21105/joss.08696
|
|
22
|
+
issn: 2475-9066
|
|
23
|
+
issue: 113
|
|
24
|
+
journal: Journal of Open Source Software
|
|
25
|
+
publisher:
|
|
26
|
+
name: Open Journals
|
|
27
|
+
start: 8696
|
|
28
|
+
title: Enabling the Verification and Formalization of Hybrid
|
|
29
|
+
Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0
|
|
30
|
+
type: article
|
|
31
|
+
url: "https://joss.theoj.org/papers/10.21105/joss.08696"
|
|
32
|
+
volume: 10
|
|
33
|
+
title: Enabling the Verification and Formalization of Hybrid
|
|
34
|
+
Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# QASM TypeScript
|
|
2
2
|
|
|
3
3
|

|
|
4
|
+
[](https://doi.org/10.21105/joss.08696)
|
|
4
5
|
|
|
5
6
|
|
|
6
7
|
OpenQASM, the low-level programming language for quantum circuit specification, implemented in TypeScript.
|
|
@@ -53,7 +54,7 @@ The parser is able to recognize and handle 19 distinct types of syntax errors, w
|
|
|
53
54
|
exported in `errors.ts`. While this is not an advanced semantic or static analysis, it should enable
|
|
54
55
|
users to basically validate their OpenQASM 2.0 or 3.0 code.
|
|
55
56
|
|
|
56
|
-
Comprehensive API docs can be found in the `docs/` directory.
|
|
57
|
+
Comprehensive API docs can be found in the `docs/` directory, and the docs are hosted online [here](https://marcusedwards.me/qasm-ts).
|
|
57
58
|
|
|
58
59
|
## Example I/O
|
|
59
60
|
|
|
@@ -186,16 +187,20 @@ Unless required by applicable law or agreed to in writing, software distributed
|
|
|
186
187
|
|
|
187
188
|
## How to Cite
|
|
188
189
|
|
|
189
|
-
If you are using QASM-TS for research we appreciate any citations. Please read and cite our
|
|
190
|
+
If you are using QASM-TS for research we appreciate any citations. Please read and cite our [paper](https://doi.org/10.21105/joss.08696) published with the Journal of Open Source Software.
|
|
190
191
|
|
|
191
192
|
```
|
|
192
|
-
@
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
193
|
+
@article{Kim[2025,
|
|
194
|
+
doi = {10.21105/joss.08696},
|
|
195
|
+
url = {https://doi.org/10.21105/joss.08696},
|
|
196
|
+
year = {2025},
|
|
197
|
+
publisher = {The Open Journal},
|
|
198
|
+
volume = {10},
|
|
199
|
+
number = {113},
|
|
200
|
+
pages = {8696},
|
|
201
|
+
author = {Kim[, Sean and Edwards[, Marcus},
|
|
202
|
+
title = {Enabling the Verification and Formalization of Hybrid Quantum-Classical Computing with OpenQASM 3.0 compatible QASM-TS 2.0},
|
|
203
|
+
journal = {Journal of Open Source Software}
|
|
200
204
|
}
|
|
205
|
+
|
|
201
206
|
```
|