-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 984 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": "@diffity",
"version": "0.3.0",
"private": true,
"type": "module",
"description": "GitHub-style git diff viewer in the browser",
"workspaces": [
"packages/cli",
"packages/git",
"packages/github",
"packages/parser",
"packages/ui"
],
"scripts": {
"build": "tsx scripts/build.ts",
"build:skills": "tsx scripts/build-skills.ts",
"test": "npm run test -w @diffity/git && npm run test -w @diffity/parser && npm run test -w @diffity/ui",
"link-dev": "tsx scripts/link-dev.ts",
"dev": "tsx scripts/dev.ts",
"release:patch": "npm run build && tsx scripts/release.ts patch && npm publish -w packages/cli",
"release:minor": "npm run build && tsx scripts/release.ts minor && npm publish -w packages/cli"
},
"keywords": [
"git",
"diff",
"viewer",
"cli"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^9.2.1",
"gray-matter": "^4.0.3",
"tsx": "^4.21.0"
}
}