Skip to content

Commit

Permalink
Merge pull request #12 from PAIR-code/dev
Browse files Browse the repository at this point in the history
fix: package specification of main output files fixed
  • Loading branch information
iislucas authored Oct 26, 2024
2 parents 3dc911b + 85b93f7 commit 73ac1f2
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -30,7 +31,7 @@
"keywords": [
"llm"
],
"author": "",
"author": "Lucas Dixon <[email protected]> (https://github.com/iislucas)",
"license": "Apache-2.0",
"prettier": {
"printWidth": 80,
Expand All @@ -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"
}
}

0 comments on commit 73ac1f2

Please sign in to comment.