@telepath-computer/stash 0.1.5 → 0.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telepath-computer/stash",
3
- "version": "0.1.5",
3
+ "version": "0.2.2",
4
4
  "description": "Conflict-free synced folders",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -12,12 +12,15 @@
12
12
  "dist"
13
13
  ],
14
14
  "scripts": {
15
- "build": "tsc",
15
+ "build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc",
16
16
  "prepublishOnly": "npm run build",
17
17
  "stash": "node ./src/cli.ts",
18
18
  "test": "node --test tests/unit/*.test.ts tests/integration/*.test.ts",
19
19
  "test:e2e": "node --env-file-if-exists=.env --test tests/e2e/*.test.ts",
20
- "test:all": "npm test && npm run test:e2e"
20
+ "test:all": "npm test && npm run test:e2e",
21
+ "lint": "eslint src/ tests/",
22
+ "format": "prettier --write src/ tests/ docs/",
23
+ "format:check": "prettier --check src/ tests/ docs/"
21
24
  },
22
25
  "keywords": [
23
26
  "sync",
@@ -33,13 +36,19 @@
33
36
  "dependencies": {
34
37
  "@inquirer/prompts": "^8.3.0",
35
38
  "@parcel/watcher": "^2.5.6",
39
+ "@rupertsworld/daemon": "^0.1.0",
36
40
  "@rupertsworld/disposable": "^0.1.0",
37
41
  "@rupertsworld/emitter": "^0.1.0",
38
42
  "commander": "^14.0.3",
39
43
  "diff-match-patch": "^1.0.5"
40
44
  },
41
45
  "devDependencies": {
46
+ "@eslint/js": "^10.0.1",
42
47
  "@types/node": "^25.3.3",
43
- "typescript": "^5.9.3"
48
+ "eslint": "^10.0.3",
49
+ "eslint-config-prettier": "^10.1.8",
50
+ "prettier": "^3.8.1",
51
+ "typescript": "^5.9.3",
52
+ "typescript-eslint": "^8.57.0"
44
53
  }
45
54
  }