0.1.17 (#18)
Co-authored-by: Julien Valverdé <julien.valverde@mailo.com> Reviewed-on: #18
This commit was merged in pull request #18.
This commit is contained in:
107
package.json
107
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@thilawyn/thilalib",
|
||||
"version": "0.1.16",
|
||||
"version": "0.1.17",
|
||||
"type": "module",
|
||||
"files": [
|
||||
"./dist"
|
||||
@@ -8,68 +8,44 @@
|
||||
"types": "./dist/index.d.ts",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/index.d.cts",
|
||||
"default": "./dist/index.cjs"
|
||||
}
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"./Layers": {
|
||||
"import": {
|
||||
"types": "./dist/Layers/index.d.ts",
|
||||
"default": "./dist/Layers/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/Layers/index.d.cts",
|
||||
"default": "./dist/Layers/index.cjs"
|
||||
}
|
||||
"./Express": {
|
||||
"types": "./dist/Express/index.d.ts",
|
||||
"default": "./dist/Express/index.js"
|
||||
},
|
||||
"./Schema": {
|
||||
"import": {
|
||||
"types": "./dist/Schema/index.d.ts",
|
||||
"default": "./dist/Schema/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/Schema/index.d.cts",
|
||||
"default": "./dist/Schema/index.cjs"
|
||||
}
|
||||
},
|
||||
"./Schema/MobX": {
|
||||
"import": {
|
||||
"types": "./dist/Schema/MobX/index.d.ts",
|
||||
"default": "./dist/Schema/MobX/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/Schema/MobX/index.d.cts",
|
||||
"default": "./dist/Schema/MobX/index.cjs"
|
||||
}
|
||||
},
|
||||
"./Schema/TanStackForm": {
|
||||
"import": {
|
||||
"types": "./dist/Schema/TanStackForm/index.d.ts",
|
||||
"default": "./dist/Schema/TanStackForm/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/Schema/TanStackForm/index.d.cts",
|
||||
"default": "./dist/Schema/TanStackForm/index.cjs"
|
||||
}
|
||||
"./TRPC": {
|
||||
"types": "./dist/TRPC/index.d.ts",
|
||||
"default": "./dist/TRPC/index.js"
|
||||
},
|
||||
"./Types": {
|
||||
"import": {
|
||||
"types": "./dist/Types/index.d.ts",
|
||||
"default": "./dist/Types/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/Types/index.d.cts",
|
||||
"default": "./dist/Types/index.cjs"
|
||||
}
|
||||
"types": "./dist/Types/index.d.ts",
|
||||
"default": "./dist/Types/index.js"
|
||||
},
|
||||
"./Schema": {
|
||||
"types": "./dist/Schema/index.d.ts",
|
||||
"default": "./dist/Schema/index.js"
|
||||
},
|
||||
"./Schema/MobX": {
|
||||
"types": "./dist/Schema/MobX/index.d.ts",
|
||||
"default": "./dist/Schema/MobX/index.js"
|
||||
},
|
||||
"./Schema/TanStackForm": {
|
||||
"types": "./dist/Schema/TanStackForm/index.d.ts",
|
||||
"default": "./dist/Schema/TanStackForm/index.js"
|
||||
},
|
||||
"./JSONWebToken": {
|
||||
"types": "./dist/JSONWebToken.d.ts",
|
||||
"default": "./dist/JSONWebToken.js"
|
||||
},
|
||||
"./OpenAIClient": {
|
||||
"types": "./dist/OpenAIClient.d.ts",
|
||||
"default": "./dist/OpenAIClient.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsup",
|
||||
"build": "tsc",
|
||||
"lint:tsc": "tsc --noEmit",
|
||||
"clean:cache": "rm -f tsconfig.tsbuildinfo",
|
||||
"clean:dist": "rm -rf dist",
|
||||
@@ -80,18 +56,23 @@
|
||||
"type-fest": "^4.26.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@effect/schema": "^0.72.0",
|
||||
"@prisma/studio-server": "^0.502.0",
|
||||
"@tanstack/form-core": "^0.30.0",
|
||||
"@effect/schema": "^0.72.3",
|
||||
"@tanstack/form-core": "^0.32.0",
|
||||
"@trpc/server": "^10.45.2",
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/jsonwebtoken": "^9.0.6",
|
||||
"bun-types": "^1.1.26",
|
||||
"effect": "^3.7.0",
|
||||
"@types/ws": "^8.5.12",
|
||||
"bun-types": "^1.1.27",
|
||||
"effect": "^3.7.2",
|
||||
"express": "^4.19.2",
|
||||
"jsonwebtoken": "^9.0.2",
|
||||
"mobx": "^6.13.1",
|
||||
"mobx": "^6.13.2",
|
||||
"npm-check-updates": "^17.1.1",
|
||||
"npm-sort": "^0.0.4",
|
||||
"openai": "^4.58.1",
|
||||
"tsup": "^8.2.4",
|
||||
"tsx": "^4.19.0",
|
||||
"typescript": "^5.5.4"
|
||||
"typescript": "^5.5.4",
|
||||
"ws": "^8.18.0"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user