@polagram/core 0.0.2 → 0.0.3

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 (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  `@polagram/core` is the core parsing and AST manipulation library for the Polagram project. It provides functionality to parse diagram languages (currently focusing on Mermaid Sequence Diagrams) into a generic Polagram Abstract Syntax Tree (AST).
4
4
 
5
+ **Official Website:** [https://polagram.org/](https://polagram.org/)
6
+
5
7
  ## Installation
6
8
 
7
9
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polagram/core",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -9,6 +9,7 @@
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/Jun-T-git/polagram.git"
11
11
  },
12
+ "homepage": "https://polagram.org/",
12
13
  "license": "MIT",
13
14
  "keywords": [
14
15
  "polagram",
@@ -30,7 +31,10 @@
30
31
  ],
31
32
  "devDependencies": {
32
33
  "@types/js-yaml": "^4.0.9",
33
- "js-yaml": "^4.1.1"
34
+ "js-yaml": "^4.1.1",
35
+ "typescript": "^5.9.3",
36
+ "vite": "^7.3.0",
37
+ "vitest": "^4.0.16"
34
38
  },
35
39
  "dependencies": {
36
40
  "zod": "^4.2.1"