@chanmeng666/archlang 0.1.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,64 +1,65 @@
1
- {
2
- "name": "@chanmeng666/archlang",
3
- "version": "0.1.0",
4
- "description": "A small declarative language that compiles to professional SVG floor plans — like Typst/LaTeX, but for architecture.",
5
- "keywords": [
6
- "architecture",
7
- "floor-plan",
8
- "dsl",
9
- "compiler",
10
- "svg",
11
- "cad",
12
- "typst",
13
- "parametric",
14
- "language"
15
- ],
16
- "license": "MIT",
17
- "author": "Chan Meng <chanmeng.dev@gmail.com>",
18
- "homepage": "https://github.com/chanmeng666/archlang#readme",
19
- "repository": {
20
- "type": "git",
21
- "url": "git+https://github.com/chanmeng666/archlang.git"
22
- },
23
- "bugs": {
24
- "url": "https://github.com/chanmeng666/archlang/issues"
25
- },
26
- "type": "module",
27
- "main": "./dist/index.js",
28
- "module": "./dist/index.js",
29
- "types": "./dist/index.d.ts",
30
- "exports": {
31
- ".": {
32
- "types": "./dist/index.d.ts",
33
- "import": "./dist/index.js"
34
- }
35
- },
36
- "bin": {
37
- "arch": "./dist/cli.js"
38
- },
39
- "files": [
40
- "dist",
41
- "examples",
42
- "README.md",
43
- "LICENSE"
44
- ],
45
- "engines": {
46
- "node": ">=18"
47
- },
48
- "scripts": {
49
- "build": "tsup",
50
- "dev": "tsup --watch",
51
- "typecheck": "tsc --noEmit",
52
- "test": "vitest run",
53
- "test:watch": "vitest",
54
- "cli": "tsx src/cli.ts",
55
- "prepublishOnly": "npm run build && npm run test"
56
- },
57
- "devDependencies": {
58
- "@types/node": "^22.20.0",
59
- "tsup": "^8.3.5",
60
- "tsx": "^4.19.2",
61
- "typescript": "^5.7.2",
62
- "vitest": "^2.1.8"
63
- }
64
- }
1
+ {
2
+ "name": "@chanmeng666/archlang",
3
+ "version": "0.3.0",
4
+ "description": "A small declarative language that compiles to professional SVG floor plans — like Typst/LaTeX, but for architecture.",
5
+ "keywords": [
6
+ "architecture",
7
+ "floor-plan",
8
+ "dsl",
9
+ "compiler",
10
+ "svg",
11
+ "cad",
12
+ "typst",
13
+ "parametric",
14
+ "language"
15
+ ],
16
+ "license": "MIT",
17
+ "author": "Chan Meng <chanmeng.dev@gmail.com>",
18
+ "homepage": "https://github.com/chanmeng666/archlang#readme",
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/chanmeng666/archlang.git"
22
+ },
23
+ "bugs": {
24
+ "url": "https://github.com/chanmeng666/archlang/issues"
25
+ },
26
+ "type": "module",
27
+ "main": "./dist/index.js",
28
+ "module": "./dist/index.js",
29
+ "types": "./dist/index.d.ts",
30
+ "exports": {
31
+ ".": {
32
+ "types": "./dist/index.d.ts",
33
+ "import": "./dist/index.js"
34
+ }
35
+ },
36
+ "bin": {
37
+ "arch": "dist/cli.js"
38
+ },
39
+ "files": [
40
+ "dist",
41
+ "examples",
42
+ "README.md",
43
+ "LICENSE"
44
+ ],
45
+ "engines": {
46
+ "node": ">=18"
47
+ },
48
+ "scripts": {
49
+ "build": "tsup",
50
+ "dev": "tsup --watch",
51
+ "typecheck": "tsc --noEmit",
52
+ "test": "vitest run",
53
+ "test:watch": "vitest",
54
+ "cli": "tsx src/cli.ts",
55
+ "prepublishOnly": "npm run build && npm run test"
56
+ },
57
+ "devDependencies": {
58
+ "@types/node": "^22.20.0",
59
+ "fast-check": "^4.8.0",
60
+ "tsup": "^8.3.5",
61
+ "tsx": "^4.19.2",
62
+ "typescript": "^5.7.2",
63
+ "vitest": "^2.1.8"
64
+ }
65
+ }