-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.07 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.07 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
{
"name": "@zernio/node",
"version": "0.2.73",
"description": "The official Node.js library for the Zernio API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./_shims/*": {
"types": "./dist/_shims/*.d.ts",
"import": "./dist/_shims/*.mjs",
"require": "./dist/_shims/*.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"generate": "openapi-ts -i openapi.yaml -o src/generated -c @hey-api/client-fetch && npm run generate:client",
"generate:client": "npx tsx scripts/generate-client.ts",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"fetch-spec": "curl -o openapi.yaml https://zernio.com/openapi.yaml"
},
"keywords": [
"zernio",
"social-media",
"scheduling",
"api",
"sdk",
"instagram",
"tiktok",
"youtube",
"linkedin",
"twitter",
"x",
"facebook",
"pinterest",
"threads",
"bluesky",
"snapchat",
"telegram"
],
"author": "Zernio <support@zernio.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/zernio-dev/zernio-node.git"
},
"homepage": "https://zernio.com/docs/api",
"bugs": {
"url": "https://github.com/zernio-dev/zernio-node/issues"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@hey-api/client-fetch": "^0.6.0",
"@hey-api/openapi-ts": "^0.61.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.0",
"yaml": "^2.3.4"
}
}