-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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
{
"name": "@fixers/aweber-node-api",
"type": "module",
"version": "0.0.3",
"description": "Aweber do not have API!",
"author": "Luca <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wefixers/aweber-node-api.git"
},
"keywords": [
"Aweber",
"api"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepack": "pnpm build"
},
"dependencies": {
"client-oauth2": "^4.3.3",
"ofetch": "^1.0.1",
"ufo": "^1.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.4",
"@types/node": "^20.2.5",
"changelogen": "^0.5.3",
"eslint": "^8.42.0",
"typescript": "^5.1.0",
"unbuild": "^1.2.1",
"vitest": "^0.31.4"
}
}