-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.31 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
{
"name": "degit",
"version": "3.7.0",
"description": "Straightforward project scaffolding",
"keywords": [
"git",
"scaffolding",
"template"
],
"homepage": "https://github.com/Rich-Harris/degit#readme",
"bugs": {
"url": "https://github.com/Rich-Harris/degit/issues"
},
"license": "MIT",
"author": "Rich Harris",
"maintainers": [
"YogliB <me@yogev.dev>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Rich-Harris/degit.git"
},
"bin": {
"degit": "degit"
},
"files": [
"assets/help.md",
"dist",
"docs/CHANGELOG.md",
"docs/USAGE.md",
"LICENSE.md",
"README.md",
"schemas"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "oxlint --fix .",
"lint:ci": "oxlint .",
"typecheck": "tsc --noEmit",
"audit": "bun audit",
"knip:ci": "knip",
"perf": "bun perf/bench.ts",
"prepare": "husky",
"format": "oxfmt --write .",
"format:ci": "oxfmt --check .",
"duplicates:ci": "jscpd --gitignore --reporters console --threshold 5 tsdown.config.ts vitest.config.ts src test",
"dev": "tsdown --config tsdown.config.ts --watch",
"build": "tsdown --config tsdown.config.ts",
"test": "vitest run --exclude test/integration/private.test.ts",
"test:integration": "vitest run test/integration",
"test:integration:release": "bun test/integration/release.ts",
"test:coverage": "vitest run --coverage",
"pretest": "bun run build",
"prepublishOnly": "bun run test"
},
"devDependencies": {
"@types/node": "25.6.0",
"@vitest/coverage-v8": "4.1.8",
"enquirer": "2.3.6",
"eslint-plugin-security": "4.0.0",
"fuzzysearch": "1.0.3",
"https-proxy-agent": "5.0.0",
"husky": "9.1.7",
"isomorphic-git": "1.38.1",
"jscpd": "4.0.9",
"knip": "6.11.0",
"lint-staged": "10.5.4",
"mri": "1.1.6",
"oxfmt": "0.47.0",
"oxlint": "1.72.0",
"tar": "7.5.21",
"tiny-glob": "0.2.8",
"tsdown": "0.21.10",
"typescript": "6.0.3",
"vite": "8.0.16",
"vitest": "4.1.8",
"yoctocolors": "2.1.2"
},
"overrides": {
"brace-expansion": "1.1.16",
"nanoid": "3.3.17",
"postcss": "8.5.23",
"vite": "8.0.16"
},
"lint-staged": {
"*.{js,ts}": [
"oxlint --fix",
"git add"
],
"**/*": [
"oxfmt --write --no-error-on-unmatched-pattern",
"git add"
]
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "bun@1.3.14"
}