curasync 0.0.1-dev

Sign up to get free protection for your applications and to get access to all the features.
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # curasync
2
+
3
+ To install dependencies:
4
+
5
+ ```bash
6
+ bun install
7
+ ```
8
+
9
+ To run:
10
+
11
+ ```bash
12
+ bun run index.js
13
+ ```
14
+
15
+ This project was created using `bun init` in bun v1.0.26. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
package/build/curasync ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "curasync",
3
+ "version": "0.0.1-dev",
4
+ "description": "Sync your cura configuration folder with a git repository",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "build": "bun build --compile index.ts --outfile build/curasync",
9
+ "prepublishOnly": "npm run build"
10
+ },
11
+ "files": [
12
+ "build/*"
13
+ ],
14
+ "bin": {
15
+ "curasync": "./build/curasync"
16
+ },
17
+ "keywords": [
18
+ "cura",
19
+ "3d-printing"
20
+ ],
21
+ "author": "lunaroyster",
22
+ "license": "MIT",
23
+ "devDependencies": {
24
+ "@types/bun": "latest"
25
+ },
26
+ "peerDependencies": {
27
+ "typescript": "^5.0.0"
28
+ }
29
+ }