Skip to content

Commit 73ac1f2

Browse files
authored
Merge pull request #12 from PAIR-code/dev
fix: package specification of main output files fixed
2 parents 3dc911b + 85b93f7 commit 73ac1f2

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

package.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "ts-llmt",
33
"version": "0.0.2",
44
"description": "Experimental TypeScript library for Large Language Model Templates",
5-
"main": "index.js",
5+
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
67
"scripts": {
78
"build": "tsc -p .",
89
"build:dry-run": "tsc --noEmit",
@@ -30,7 +31,7 @@
3031
"keywords": [
3132
"llm"
3233
],
33-
"author": "",
34+
"author": "Lucas Dixon <ldixon@google.com> (https://github.com/iislucas)",
3435
"license": "Apache-2.0",
3536
"prettier": {
3637
"printWidth": 80,
@@ -39,23 +40,23 @@
3940
"singleQuote": true
4041
},
4142
"devDependencies": {
42-
"@eslint/js": "9.3.0",
43-
"@tsconfig/node18": "18.2.4",
44-
"@types/jest": "29.5.12",
45-
"@types/underscore": "1.11.15",
46-
"eslint": "8.57.0",
43+
"@eslint/js": "^9.3.0",
44+
"@tsconfig/node18": "^18.2.4",
45+
"@types/jest": "^29.5.12",
46+
"@types/underscore": "^1.11.15",
47+
"eslint": "^8.57.0",
4748
"eslint-plugin-license-header": "^0.6.1",
4849
"google-auth-library": "^9.14.2",
49-
"prettier": "3.2.5",
50-
"rimraf": "5.0.7",
50+
"prettier": "^3.2.5",
51+
"rimraf": "^5.0.7",
5152
"semantic-release": "^24.2.0",
52-
"ts-jest": "29.1.3",
53+
"ts-jest": "^29.1.3",
5354
"ts-node": "^10.9.2",
54-
"typescript": "5.4.5",
55-
"typescript-eslint": "7.10.0",
56-
"yargs": "17.7.2"
55+
"typescript-eslint": "^7.10.0",
56+
"yargs": "^17.7.2"
5757
},
5858
"dependencies": {
59-
"underscore": "1.13.6"
59+
"underscore": "^1.13.6",
60+
"typescript": "^5.4.5"
6061
}
6162
}

0 commit comments

Comments
 (0)