warpvector 0.1.0 → 0.1.1
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 +263 -98
- package/dist/index.d.mts +895 -46
- package/dist/index.d.ts +895 -46
- package/dist/index.js +2744 -350
- package/dist/index.mjs +2744 -351
- package/package.json +16 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "warpvector",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A lightweight, zero-dependency TypeScript middleware for dynamic vector space transformation (affine transformation).",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"build:wasm": "bun run scripts/build-wasm.ts",
|
|
20
20
|
"build": "bun run build:wasm && tsup src/index.ts --format cjs,esm --dts --clean",
|
|
21
21
|
"test": "bun run build:wasm && bun test",
|
|
22
|
+
"bench": "bun run build:wasm && bun run benchmarks/run.ts",
|
|
22
23
|
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
|
|
23
24
|
},
|
|
24
25
|
"keywords": [
|
|
@@ -31,12 +32,26 @@
|
|
|
31
32
|
],
|
|
32
33
|
"author": "Daiki Moritake",
|
|
33
34
|
"license": "MIT",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/daiki-moritake/warpvector.git"
|
|
38
|
+
},
|
|
34
39
|
"devDependencies": {
|
|
40
|
+
"@langchain/core": "^1.1.49",
|
|
41
|
+
"@prisma/client": "^7.8.0",
|
|
35
42
|
"@types/bun": "^1.3.14",
|
|
36
43
|
"@types/node": "^20.0.0",
|
|
37
44
|
"assemblyscript": "^0.28.19",
|
|
38
45
|
"prettier": "^3.0.0",
|
|
39
46
|
"tsup": "^8.0.0",
|
|
40
47
|
"typescript": "^5.0.0"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@prisma/client": "^5.0.0 || ^6.0.0 || ^7.0.0"
|
|
51
|
+
},
|
|
52
|
+
"peerDependenciesMeta": {
|
|
53
|
+
"@prisma/client": {
|
|
54
|
+
"optional": true
|
|
55
|
+
}
|
|
41
56
|
}
|
|
42
57
|
}
|