Refactor (1)

This commit is contained in:
2025-09-19 18:54:12 +09:00
committed by cannorin
parent 6b15542c40
commit c3b1bf39a4
26 changed files with 1684 additions and 105 deletions

View File

@@ -0,0 +1,22 @@
{
"name": "@cannorin/utils",
"version": "0.0.1",
"private": true,
"exports": {
".": "./index.ts",
"./headless": "./src/headless.ts",
"./array": "./src/array.ts",
"./vector": "./src/vector.ts",
"./multiset": "./src/multiset.ts"
},
"scripts": {
"build": "tsc",
"lint": "biome check",
"fix": "biome check --fix",
"test": "vitest"
},
"devDependencies": {
"typescript": "5.7.3",
"vitest": "3.2.4"
}
}