copit 1.0.0 → 1.0.2
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/dist/index.js +48625 -0
- package/package.json +5 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "copit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "GitHub File Fetcher TUI - Download files from GitHub repositories with OAuth authentication, fuzzy search, and download history",
|
|
5
5
|
"module": "src/index.tsx",
|
|
6
6
|
"type": "module",
|
|
@@ -24,18 +24,15 @@
|
|
|
24
24
|
"type": "git",
|
|
25
25
|
"url": "git+https://github.com/mrsekut/copit.git"
|
|
26
26
|
},
|
|
27
|
-
"bugs": {
|
|
28
|
-
"url": "https://github.com/mrsekut/copit/issues"
|
|
29
|
-
},
|
|
30
|
-
"homepage": "https://github.com/mrsekut/copit#readme",
|
|
31
27
|
"scripts": {
|
|
32
28
|
"dev": "bun run src/index.tsx",
|
|
33
|
-
"build": "bun build
|
|
29
|
+
"build": "bun run build.ts",
|
|
34
30
|
"typecheck": "tsc --noEmit",
|
|
35
31
|
"lint": "eslint . --ext .ts,.tsx --fix",
|
|
36
32
|
"format": "prettier --write .",
|
|
37
33
|
"test": "vitest",
|
|
38
|
-
"check": "bun typecheck && bun lint && bun format && bun test"
|
|
34
|
+
"check": "bun typecheck && bun lint && bun format && bun test",
|
|
35
|
+
"prepublishOnly": "bun run build"
|
|
39
36
|
},
|
|
40
37
|
"dependencies": {
|
|
41
38
|
"@octokit/auth-oauth-device": "^8.0.1",
|
|
@@ -58,6 +55,7 @@
|
|
|
58
55
|
"eslint-plugin-react": "^7.37.3",
|
|
59
56
|
"eslint-plugin-react-hooks": "^5.1.0",
|
|
60
57
|
"prettier": "^3.4.2",
|
|
58
|
+
"react-devtools-core": "^6.1.3",
|
|
61
59
|
"typescript": "^5.7.3",
|
|
62
60
|
"vitest": "^2.1.8"
|
|
63
61
|
}
|