-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.67 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@oevery/pusher",
"type": "module",
"version": "0.2.2",
"packageManager": "[email protected]",
"description": "simple pusher.",
"author": {
"name": "oevery",
"email": "[email protected]",
"url": "https://github.com/oevery"
},
"license": "MIT",
"repository": "oevery/pusher",
"keywords": [
"pusher",
"push"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./schema": {
"types": "./dist/schema/index.d.ts",
"import": "./dist/schema/index.mjs",
"require": "./dist/schema/index.cjs"
},
"./provider": {
"types": "./dist/provider/index.d.ts",
"import": "./dist/provider/index.mjs",
"require": "./dist/provider/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"c12": "^1.11.1",
"change-case": "^5.4.4",
"consola": "^3.2.3",
"destr": "^2.0.3",
"klona": "^2.0.6",
"ofetch": "^1.3.4",
"ramda": "^0.30.1",
"type-fest": "^4.21.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.0",
"@types/node": "^20.14.10",
"@types/ramda": "^0.30.1",
"eslint": "^9.6.0",
"jiti": "^1.21.6",
"lint-staged": "^15.2.7",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"unbuild": "^2.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}