modelsuggest 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,10 @@
1
+ ### AI Models
2
+
3
+ - A library for providing AI model names for various providers
4
+
5
+ -build
6
+ -publish
7
+ -generate-token
8
+ -add token
9
+ -correct ci and commit
10
+ -workflow_dispatch
@@ -0,0 +1,5 @@
1
+ declare const MODELS: readonly [];
2
+ type Model = (typeof MODELS)[number];
3
+ declare const model: Record<never, never>;
4
+
5
+ export { type Model, model };
@@ -0,0 +1 @@
1
+ 'use strict';var r=[],t=r.reduce((e,o)=>(e[o]=o,e),{});exports.model=t;
@@ -0,0 +1,5 @@
1
+ declare const MODELS: readonly [];
2
+ type Model = (typeof MODELS)[number];
3
+ declare const model: Record<never, never>;
4
+
5
+ export { type Model, model };
@@ -0,0 +1 @@
1
+ 'use strict';var r=[],t=r.reduce((e,o)=>(e[o]=o,e),{});exports.model=t;
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "modelsuggest",
3
+ "version": "1.0.1",
4
+ "description": "A library for providing AI model names for various providers",
5
+ "license": "ISC",
6
+ "author": "SwasthK",
7
+ "type": "commonjs",
8
+ "scripts": {
9
+ "build": "tsup",
10
+ "clean": "rm -rf dist",
11
+ "sync": "tsx src/scripts/index.ts"
12
+ },
13
+ "keywords": [
14
+ "ai",
15
+ "models",
16
+ "openrouter",
17
+ "anannas"
18
+ ],
19
+ "files": [
20
+ "dist/anannas",
21
+ "dist/openrouter"
22
+ ],
23
+ "exports": {
24
+ "./anannas": {
25
+ "types": "./dist/anannas/index.d.ts",
26
+ "default": "./dist/anannas/index.js"
27
+ },
28
+ "./openrouter": {
29
+ "types": "./dist/openrouter/index.d.ts",
30
+ "default": "./dist/openrouter/index.js"
31
+ }
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "^24.10.1",
35
+ "tsup": "^8.5.1",
36
+ "tsx": "^4.7.0",
37
+ "typescript": "^5.9.3"
38
+ }
39
+ }