@uigraph/sdk 1.1.40 → 1.2.0

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.
Files changed (1) hide show
  1. package/package.json +14 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uigraph/sdk",
3
- "version": "1.1.40",
3
+ "version": "1.2.0",
4
4
  "type": "module",
5
5
  "license": "BUSL-1.1",
6
6
  "repository": {
@@ -16,18 +16,6 @@
16
16
  "README.md",
17
17
  "LICENSE"
18
18
  ],
19
- "scripts": {
20
- "prepare": "husky",
21
- "test": "vitest --run",
22
- "lint": "tsc --noEmit && eslint .",
23
- "fix": "eslint . --fix",
24
- "tsc": "tsc --noEmit",
25
- "tc": "tsc --noEmit --watch",
26
- "exports": "tsx ./write-exports.ts",
27
- "build": "tsdown --config ./tsdown.config.ts",
28
- "dev": "concurrently --names \"R,T,V\" --prefix-colors \"blue.dim,magenta.dim,green.dim\" \"tsdown --config ./tsdown.config.ts --watch\" \"tsc --noEmit --watch\" \"vitest dev\"",
29
- "start": "bun run --watch ./src/__lab__/index.ts"
30
- },
31
19
  "dependencies": {
32
20
  "dagre": "^0.8.5",
33
21
  "daily-code": "^1.1.16",
@@ -54,6 +42,7 @@
54
42
  "eslint-plugin-import": "^2.32.0",
55
43
  "eslint-plugin-prettier": "^5.5.5",
56
44
  "husky": "^9.1.7",
45
+ "jsonc-patch": "^0.0.4",
57
46
  "prettier": "^3.8.3",
58
47
  "prettier-plugin-organize-imports": "^4.3.0",
59
48
  "rolldown": "1.0.0-rc.2",
@@ -119,5 +108,16 @@
119
108
  "./dist/animated-nodes.d.cts"
120
109
  ]
121
110
  }
111
+ },
112
+ "scripts": {
113
+ "test": "vitest --run",
114
+ "lint": "tsc --noEmit && eslint .",
115
+ "fix": "eslint . --fix",
116
+ "tsc": "tsc --noEmit",
117
+ "tc": "tsc --noEmit --watch",
118
+ "exports": "tsx ./write-exports.ts",
119
+ "build": "tsdown --config ./tsdown.config.ts",
120
+ "dev": "concurrently --names \"R,T,V\" --prefix-colors \"blue.dim,magenta.dim,green.dim\" \"tsdown --config ./tsdown.config.ts --watch\" \"tsc --noEmit --watch\" \"vitest dev\"",
121
+ "start": "bun run --watch ./src/__lab__/index.ts"
122
122
  }
123
- }
123
+ }