-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.7 KB
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
63
64
65
66
67
68
{
"name": "llm-algorithms",
"version": "0.1.0",
"description": "Curated algorithms toolkit designed for large language model integrations and rapid prototyping.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./docs/index.d.ts",
"exports": {
".": {
"types": "./docs/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"docs",
"README.md",
"PROJECT_DESCRIPTION.md"
],
"sideEffects": false,
"scripts": {
"preinstall": "npm config set registry https://registry.npmjs.org/",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
"format": "prettier --write .",
"benchmark": "node benchmarks/runBenchmarks.mjs",
"size": "size-limit"
},
"keywords": [
"algorithms",
"llm",
"ai",
"utilities",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://example.com/llm-algorithms.git"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@size-limit/preset-small-lib": "^11.0.3",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"size-limit": "^11.0.3",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"size-limit": [
{
"name": "bundle",
"path": "dist/index.js",
"limit": "48 KB"
}
]
}