-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.33 KB
/
package.json
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
{
"name": "glob-native",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]",
"description": "",
"license": "MIT",
"repository": "unjs/glob-native",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . --fix",
"prepare": "simple-git-hooks",
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && pnpm publish",
"test": "pnpm test:unit && pnpm test:types",
"test:unit": "vitest",
"test:types": "tsc --noEmit"
},
"dependencies": {
"fdir": "^6.1.1",
"picomatch": "^4.0.2"
},
"devDependencies": {
"@antfu/eslint-config": "latest",
"@types/picomatch": "3.0.1",
"@vitest/coverage-v8": "latest",
"bumpp": "9.8.1",
"eslint": "latest",
"lint-staged": "latest",
"simple-git-hooks": "latest",
"typescript": "latest",
"unbuild": "latest",
"vite": "latest",
"vitest": "latest"
},
"resolutions": {
"glob-native": "link:."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"pnpm eslint --fix"
]
}
}