@dxo/nn 0.0.0 → 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 +3 -1
  2. package/package.json +36 -8
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
1
  # @dxo/nn
2
2
 
3
- Placeholder package (0.0.0). Reserved for the DXO project.
3
+ Neural network modules for DXO developer preview (pure TypeScript over `@dxo/core`).
4
+
5
+ API is unstable (`0.0.x`).
package/package.json CHANGED
@@ -1,10 +1,38 @@
1
1
  {
2
- "name": "@dxo/nn",
3
- "version": "0.0.0",
4
- "description": "DXO placeholder — not for production use.",
5
- "license": "MIT",
6
- "private": false,
7
- "files": [
8
- "README.md"
9
- ]
2
+ "name": "@dxo/nn",
3
+ "version": "0.0.3",
4
+ "type": "module",
5
+ "description": "DXO neural network modules — pure TypeScript composition over @dxo/core",
6
+ "license": "MIT OR Apache-2.0",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsc -p tsconfig.json",
21
+ "test:forward": "tsx ../../../scripts/test/nn-forward.ts"
22
+ },
23
+ "dependencies": {
24
+ "@dxo/core": "0.0.3"
25
+ },
26
+ "keywords": [
27
+ "dxo",
28
+ "neural-network",
29
+ "typescript"
30
+ ],
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/ai4waifu/dxo-framework.git"
37
+ }
10
38
  }