atsds 0.0.4-alpha1 → 0.0.4

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/README.md CHANGED
@@ -6,7 +6,7 @@ A deductive system for logical inference, implemented in C++. The library provid
6
6
 
7
7
  - **C++ Core**: The core implementation in `src/` and `include/ds/` provides the fundamental data structures and algorithms
8
8
  - **Python Bindings**: Built with pybind11, wrapping the C++ core (see `apyds/`)
9
- - **TypeScript/JavaScript Bindings**: Built with Emscripten, compiling C++ to WebAssembly (see `tsds/`)
9
+ - **TypeScript/JavaScript Bindings**: Built with Emscripten, compiling C++ to WebAssembly (see `atsds/`)
10
10
 
11
11
  ## Features
12
12
 
package/package.json CHANGED
@@ -5,17 +5,17 @@
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/USTC-KnowledgeComputingLab/ds.git"
8
+ "url": "git+https://github.com/USTC-KnowledgeComputingLab/ds.git"
9
9
  },
10
10
  "type": "module",
11
- "exports": "./dist/tsds.mjs",
12
- "main": "dist/tsds.mjs",
13
- "module": "dist/tsds.mjs",
14
- "browser": "dist/tsds.mjs",
15
- "types": "dist/tsds.d.mts",
11
+ "exports": "./dist/index.mjs",
12
+ "main": "dist/index.mjs",
13
+ "module": "dist/index.mjs",
14
+ "browser": "dist/index.mjs",
15
+ "types": "dist/index.d.mts",
16
16
  "files": [
17
- "dist/tsds.d.mts",
18
- "dist/tsds.mjs"
17
+ "dist/index.d.mts",
18
+ "dist/index.mjs"
19
19
  ],
20
20
  "scripts": {
21
21
  "emcc": "emcc -std=c++20 atsds/ds.cc src/*.cc -Iinclude -lembind -o atsds/ds.mjs --emit-tsd ds.d.mts -O3 -ffast-math -flto -s ALLOW_MEMORY_GROWTH=1 -s SINGLE_FILE=1",
@@ -39,5 +39,5 @@
39
39
  "tslib": "^2.8.1",
40
40
  "typescript": "^5.9.3"
41
41
  },
42
- "version": "0.0.4-alpha1"
42
+ "version": "0.0.4"
43
43
  }
File without changes
File without changes