-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "giget",
"version": "3.2.0",
"description": "Download templates and git repositories with pleasure!",
"license": "MIT",
"repository": "unjs/giget",
"bin": {
"giget": "./dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"build": "obuild",
"dev": "vitest dev",
"giget": "node ./src/cli.ts",
"lint": "oxlint . && oxfmt --check src test",
"lint:fix": "oxlint . --fix && oxfmt src test",
"play": "pnpm giget --force-clean --verbose unjs .tmp/clone",
"release": "pnpm test && pnpm build && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsgo --noEmit"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript/native-preview": "^7.0.0-dev.20260401.1",
"@vitest/coverage-v8": "^4.1.2",
"changelogen": "^0.6.2",
"citty": "^0.2.2",
"eslint-config-unjs": "^0.6.2",
"nypm": "^0.6.5",
"obuild": "^0.4.32",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"pathe": "^2.0.3",
"rolldown": "^1.0.0-rc.13",
"tar": "^7.5.13",
"typescript": "^6.0.2",
"unbuild": "^3.6.1",
"vitest": "^4.1.2"
},
"packageManager": "[email protected]"
}