-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 780 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 780 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
{
"name": "@git-glimpse/core",
"version": "0.1.0",
"description": "Core library for git-glimpse",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.3",
"@octokit/rest": "^20.1.1",
"@playwright/test": "^1.44.0",
"minimatch": "^10.0.1",
"sucrase": "^3.35.1",
"zod": "^3.23.4"
},
"devDependencies": {
"@actions/artifact": "^2.1.11",
"@types/node": "^20.12.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}