rp2040js 0.18.0 → 0.18.1
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/package.json +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rp2040js",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.1",
|
|
4
4
|
"description": "Raspberry Pi Pico (RP2040) Emulator",
|
|
5
5
|
"repository": "https://github.com/wokwi/rp2040js",
|
|
6
6
|
"keywords": [
|
|
@@ -23,22 +23,22 @@
|
|
|
23
23
|
"exports": {
|
|
24
24
|
".": {
|
|
25
25
|
"import": {
|
|
26
|
-
"
|
|
27
|
-
"
|
|
26
|
+
"types": "./dist/esm/index.d.ts",
|
|
27
|
+
"default": "./dist/esm/index.js"
|
|
28
28
|
},
|
|
29
29
|
"require": {
|
|
30
|
-
"
|
|
31
|
-
"
|
|
30
|
+
"types": "./dist/cjs/index.d.ts",
|
|
31
|
+
"default": "./dist/cjs/index.js"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"./gdb-tcp-server": {
|
|
35
35
|
"import": {
|
|
36
|
-
"
|
|
37
|
-
"
|
|
36
|
+
"types": "./dist/esm/gdb/gdb-tcp-server.d.ts",
|
|
37
|
+
"default": "./dist/esm/gdb/gdb-tcp-server.js"
|
|
38
38
|
},
|
|
39
39
|
"require": {
|
|
40
|
-
"
|
|
41
|
-
"
|
|
40
|
+
"types": "./dist/cjs/gdb/gdb-tcp-server.d.ts",
|
|
41
|
+
"default": "./dist/cjs/gdb/gdb-tcp-server.js"
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
},
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
"prepare": "husky install",
|
|
49
49
|
"format:check": "prettier --check **/*.{ts,js} !**/dist/** !**/node_modules/**",
|
|
50
50
|
"lint": "eslint . --ext .ts",
|
|
51
|
-
"start": "ts-node demo/emulator-run.ts",
|
|
52
|
-
"start:micropython": "ts-node demo/micropython-run.ts",
|
|
53
|
-
"start:circuitpython": "ts-node demo/micropython-run.ts --circuitpython",
|
|
54
|
-
"start:gdbdiff": "ts-node debug/gdbdiff.ts",
|
|
51
|
+
"start": "ts-node --esm demo/emulator-run.ts",
|
|
52
|
+
"start:micropython": "ts-node --esm demo/micropython-run.ts",
|
|
53
|
+
"start:circuitpython": "ts-node --esm demo/micropython-run.ts --circuitpython",
|
|
54
|
+
"start:gdbdiff": "ts-node --esm debug/gdbdiff.ts",
|
|
55
55
|
"test": "vitest run",
|
|
56
56
|
"test:watch": "vitest",
|
|
57
|
-
"test:micropython-spi": "ts-node test/micropython-spi-test.ts"
|
|
57
|
+
"test:micropython-spi": "ts-node --esm test/micropython-spi-test.ts"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@types/minimist": "^1.2.2",
|