From 85b93f7418432f0e1373ccb9e7c34b48c611e12e Mon Sep 17 00:00:00 2001 From: "Lucas Dixon (iislucas)" Date: Sun, 27 Oct 2024 00:00:18 +0200 Subject: [PATCH] fix: package specification of main output files fixed --- package.json | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index 8107784..ed89304 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,8 @@ "name": "ts-llmt", "version": "0.0.2", "description": "Experimental TypeScript library for Large Language Model Templates", - "main": "index.js", + "main": "dist/index.js", + "types": "dist/index.d.ts", "scripts": { "build": "tsc -p .", "build:dry-run": "tsc --noEmit", @@ -30,7 +31,7 @@ "keywords": [ "llm" ], - "author": "", + "author": "Lucas Dixon (https://github.com/iislucas)", "license": "Apache-2.0", "prettier": { "printWidth": 80, @@ -39,23 +40,23 @@ "singleQuote": true }, "devDependencies": { - "@eslint/js": "9.3.0", - "@tsconfig/node18": "18.2.4", - "@types/jest": "29.5.12", - "@types/underscore": "1.11.15", - "eslint": "8.57.0", + "@eslint/js": "^9.3.0", + "@tsconfig/node18": "^18.2.4", + "@types/jest": "^29.5.12", + "@types/underscore": "^1.11.15", + "eslint": "^8.57.0", "eslint-plugin-license-header": "^0.6.1", "google-auth-library": "^9.14.2", - "prettier": "3.2.5", - "rimraf": "5.0.7", + "prettier": "^3.2.5", + "rimraf": "^5.0.7", "semantic-release": "^24.2.0", - "ts-jest": "29.1.3", + "ts-jest": "^29.1.3", "ts-node": "^10.9.2", - "typescript": "5.4.5", - "typescript-eslint": "7.10.0", - "yargs": "17.7.2" + "typescript-eslint": "^7.10.0", + "yargs": "^17.7.2" }, "dependencies": { - "underscore": "1.13.6" + "underscore": "^1.13.6", + "typescript": "^5.4.5" } } \ No newline at end of file