-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 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
{
"name": "gemini-token-estimator",
"version": "0.6.0",
"description": "Estimate the number of tokens for Gemini models",
"author": "GovSpend",
"repository": {
"type": "git",
"url": "git+https://github.com/smartprocure/gemini-token-estimator.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run lint && npm test && npm run build",
"clean": "rm -rf dist",
"build": "npm run clean && tsc --declaration",
"build:watch": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/**"
},
"keywords": [
"token",
"estimator",
"estimate",
"estimation",
"gemini",
"gemma",
"flash",
"pro",
"model",
"ai",
"ml",
"machine",
"learning",
"artificial",
"intelligence"
],
"license": "ISC",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^[./]"
],
"importOrderSortSpecifiers": true,
"importOrderCaseInsensitive": true,
"importOrderSeparation": true
},
"dependencies": {},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/debug": "^4.1.12",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}