-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) 路 3 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) 路 3 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "grab-url",
"description": "Generate Request to API from Browser",
"type": "module",
"version": "1.6.22",
"packageManager": "bun@1.3.10",
"author": "vtempest",
"license": "rights.institute/prosper",
"repository": {
"type": "git",
"url": "https://github.com/vtempest/GRAB-URL"
},
"workspaces": [
"packages/*",
"docs"
],
"main": "./dist/grab-api.cjs.js",
"types": "./dist/grab-api.d.ts",
"module": "./dist/grab-api.es.js",
"bin": {
"grab-url": "./dist/grab-url-cli.es.js",
"grab": "./dist/grab-url-cli.es.js",
"g": "./dist/grab-url-cli.es.js"
},
"exports": {
".": {
"types": "./dist/grab-api.d.ts",
"import": "./dist/grab-api.es.js",
"require": "./dist/grab-api.cjs.js"
},
"./slim": {
"types": "./dist/grab-api-slim.d.ts",
"import": "./dist/grab-api-slim.es.js",
"require": "./dist/grab-api-slim.cjs.js"
},
"./animations": {
"types": "./dist/animations.d.ts",
"import": "./dist/animations.es.js",
"require": "./dist/animations.cjs.js"
},
"./icons/quantum-sphere": {
"types": "./dist/quantum-sphere.d.ts",
"import": "./dist/quantum-sphere.es.js",
"require": "./dist/quantum-sphere.cjs.js"
},
"./log": {
"types": "./dist/log.d.ts",
"import": "./dist/log.es.js",
"require": "./dist/log.cjs.js"
},
"./cli": {
"types": "./dist/grab-url-cli.d.ts",
"import": "./dist/grab-url-cli.es.js",
"require": "./dist/grab-url-cli.cjs.js"
}
},
"files": [
"dist",
"src",
"src/loading-animations/cli/loading-animations-emojis.js"
],
"scripts": {
"build": "vite build --config vite.config.ts",
"make": "npm run make:icons && npm run make:docs && npm run build",
"make:docs": "npx turbo run build --filter=grab-url-docs",
"make:icons": "npx export-svg-typescript@latest -i ./src/loading-animations/svg -o ./src/loading-animations/svg/index.ts",
"ship": "bun x standard-version --release-as patch;rm CHANGELOG.md; npm publish",
"test:ui": "vitest --ui",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:cli": "bun src/grab-url-cli/index.ts https://releases.ubuntu.com/24.04.2/ubuntu-24.04.2-live-server-amd64.iso"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.3",
"linkedom": "^0.18.12"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"export-svg-typescript": "^0.1.15",
"loading-animations": "*",
"lucide-react": "^0.555.0",
"terser": "^5.46.0",
"turbo": "^1.13.4",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
},
"trustedDependencies": [
"fumadocs-mdx"
],
"overrides": {
"fumadocs-core": "16.8.5"
},
"keywords": [
"api",
"axios",
"request",
"browser",
"tanstack",
"query",
"post",
"mock-api",
"fetch",
"http"
]
}