atsds 0.0.2-alpha6 → 0.0.2-alpha8
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 +7 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -336,9 +336,16 @@ Pre-commit hooks are configured in `.pre-commit-config.yaml`.
|
|
|
336
336
|
|
|
337
337
|
This project is licensed under the GNU General Public License v3.0 or later. See [LICENSE.md](LICENSE.md) for details.
|
|
338
338
|
|
|
339
|
+
## Documentation
|
|
340
|
+
|
|
341
|
+
For comprehensive documentation including tutorials, API reference, and examples, visit:
|
|
342
|
+
|
|
343
|
+
- **[DS Documentation](https://ustc-knowledgecomputinglab.github.io/ds)**
|
|
344
|
+
|
|
339
345
|
## Repository
|
|
340
346
|
|
|
341
347
|
- **GitHub**: [USTC-KnowledgeComputingLab/ds](https://github.com/USTC-KnowledgeComputingLab/ds)
|
|
348
|
+
- **Documentation**: [ustc-knowledgecomputinglab.github.io/ds](https://ustc-knowledgecomputinglab.github.io/ds)
|
|
342
349
|
- **npm package**: [atsds](https://www.npmjs.com/package/atsds)
|
|
343
350
|
- **PyPI package**: [apyds](https://pypi.org/project/apyds/)
|
|
344
351
|
|
package/package.json
CHANGED
|
@@ -8,7 +8,10 @@
|
|
|
8
8
|
"url": "https://github.com/USTC-KnowledgeComputingLab/ds.git"
|
|
9
9
|
},
|
|
10
10
|
"type": "module",
|
|
11
|
+
"exports": "./dist/tsds.mjs",
|
|
11
12
|
"main": "dist/tsds.mjs",
|
|
13
|
+
"module": "dist/tsds.mjs",
|
|
14
|
+
"browser": "dist/tsds.mjs",
|
|
12
15
|
"types": "dist/tsds.d.mts",
|
|
13
16
|
"files": [
|
|
14
17
|
"dist/ds.mjs",
|
|
@@ -42,5 +45,5 @@
|
|
|
42
45
|
"tslib": "^2.8.1",
|
|
43
46
|
"typescript": "^5.9.3"
|
|
44
47
|
},
|
|
45
|
-
"version": "0.0.2-
|
|
48
|
+
"version": "0.0.2-alpha8"
|
|
46
49
|
}
|