@cadview/core 0.2.0 → 0.3.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.
package/package.json CHANGED
@@ -1,11 +1,20 @@
1
1
  {
2
2
  "name": "@cadview/core",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Framework-agnostic CAD file viewer engine with DXF parser and Canvas 2D renderer",
7
7
  "author": "Wisnu Wicaksono",
8
- "keywords": ["cad", "dxf", "viewer", "canvas", "2d", "parser", "autocad", "drawing"],
8
+ "keywords": [
9
+ "cad",
10
+ "dxf",
11
+ "viewer",
12
+ "canvas",
13
+ "2d",
14
+ "parser",
15
+ "autocad",
16
+ "drawing"
17
+ ],
9
18
  "repository": {
10
19
  "type": "git",
11
20
  "url": "git+https://github.com/wiscaksono/cadview.git",
@@ -33,14 +42,11 @@
33
42
  }
34
43
  }
35
44
  },
36
- "files": ["dist", "LICENSE", "README.md"],
37
- "scripts": {
38
- "build": "tsup",
39
- "dev": "tsup --watch",
40
- "test": "vitest run",
41
- "test:watch": "vitest",
42
- "typecheck": "tsc --noEmit"
43
- },
45
+ "files": [
46
+ "dist",
47
+ "LICENSE",
48
+ "README.md"
49
+ ],
44
50
  "dependencies": {
45
51
  "@types/rbush": "^4.0.0",
46
52
  "rbush": "^4.0.1"
@@ -50,5 +56,12 @@
50
56
  "vitest": "^3.0.0",
51
57
  "typescript": "^5.7.0"
52
58
  },
53
- "sideEffects": false
54
- }
59
+ "sideEffects": false,
60
+ "scripts": {
61
+ "build": "tsup",
62
+ "dev": "tsup --watch",
63
+ "test": "vitest run",
64
+ "test:watch": "vitest",
65
+ "typecheck": "tsc --noEmit"
66
+ }
67
+ }