-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 KB
/
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
40
41
42
43
44
45
46
{
"name": "git-inline",
"version": "0.0.2",
"type": "module",
"description": "Visualize Git history directly inline with your web app!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "set NODE_OPTIONS=--loader ts-node/esm && vite demo --config vite.config.ts"
},
"keywords": [
"git",
"history",
"preview",
"inline",
"visualization",
"developer-tools",
"react",
"commit-history",
"github",
"front-end"
],
"author": "teamleaderleo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/teamleaderleo/git-inline.git"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite": "^6.0.7"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"lilconfig": "^3.1.3"
}
}