-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 888 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 888 Bytes
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
{
"name": "nextstring",
"version": "1.2.0",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky",
"build": "npm run clean && tsup --format cjs,esm ./src/index.ts --dts --sourcemap --minify --clean",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/devanmolsharma/nextstring.git"
},
"author": "Anmol Sharma",
"license": "ISC",
"description": "",
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@google/genai": "^1.5.1",
"openai": "^4.101.0",
"typescript": "^5.8.3"
},
"devDependencies": {
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"tsup": "^8.5.0"
}
}