forked from paulober/pyboard-serial-com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.82 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@paulober/pyboard-serial-com",
"version": "3.0.5",
"description": "A straightforward library for establishing communication with Raspberry Pi Pico (W) boards using the pyboard.py utility via the serial port.",
"module": "./dist/index.mjs",
"type": "module",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/paulober/pyboard-serial-com.git"
},
"author": "paulober",
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"files": [
"scripts/wrapper_win32/*",
"scripts/wrapper_macOS_arm64/*",
"scripts/wrapper_macOS_amd64/*",
"scripts/wrapper_linux_arm64/*",
"scripts/wrapper_linux_armhf/*",
"scripts/wrapper_linux_amd64/*",
"dist/*.mjs",
"dist/*.map",
"dist/*.d.ts"
],
"minimumNodeVersion": 18,
"scripts": {
"prepack": "npm run build && chmod 644 scripts/wrapper*/* && chmod +x scripts/wrapper*/*.bin",
"compile-wrapper": "cd scripts && python3 -m nuitka --standalone --assume-yes-for-downloads --disable-ccache -o wrapper.bin wrapper.py",
"build": "rollup -c --environment BUILD:production",
"compile-tests": "tsc --project tsconfig.tests.json && rollup -c ./scripts/rollup.config.copy.mjs --silent",
"test": "npm run compile-tests && node ./dist/tests/index.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^18.x",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"rollup": "^4.9.6",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.3.3"
},
"dependencies": {
"uuid": "^9.0.1"
}
}