-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 917 Bytes
/
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
{
"name": "aicost",
"version": "0.1.4",
"description": "An utility for calculating the cost of AI models",
"scripts": {
"prepublishOnly": "nr build",
"release": "bunx bumpp && npm publish",
"build": "bunx unbuild",
"index": "bun run scripts/index-model-info.ts"
},
"keywords": [],
"author": "Henrique Cunha <[email protected]>",
"license": "ISC",
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@types/bun": "latest",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"type": "module",
"files": [
"dist"
],
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
}
}