-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ts-llmt",
"version": "0.0.0",
"description": "Experimental TypeScript library for Large Language Model Templates",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"build:dry-run": "tsc --noEmit",
"clean": "rimraf ./dist && mkdir dist",
"lint": "eslint ./src",
"prettier:check": "prettier --check '**/*.{js,ts}'",
"prettier:write": "prettier --write '**/*.{js,ts}'",
"test": "npm run test:dev",
"test:ci": "jest --testTimeout=15000",
"test:dev": "jest --watchAll --coverage",
"test:trace": "node --trace-warnings node_modules/.bin/jest --maxWorkers=1 --no-cache --verbose",
"premerge": "npm run lint && npm run prettier:check && npm run build && npm run test:trace"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PAIR-code/ts-llmt.git"
},
"bugs": {
"url": "https://github.com/PAIR-code/ts-llmt/issues"
},
"files": [
"./dist/**",
"./src/**"
],
"keywords": [
"llm"
],
"author": "Lucas Dixon <[email protected]> (https://github.com/iislucas)",
"license": "Apache-2.0",
"prettier": {
"printWidth": 80,
"semi": true,
"trailingComma": "es5",
"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-plugin-license-header": "^0.6.1",
"google-auth-library": "^9.14.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"semantic-release": "^24.2.0",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.2",
"typescript-eslint": "^7.10.0",
"yargs": "^17.7.2",
"typescript": "^5.4.5"
},
"dependencies": {
"underscore": "^1.13.6"
}
}