planvortex 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +283 -0
- package/dist/chunk-B4DEHU6Q.js +140 -0
- package/dist/chunk-B4DEHU6Q.js.map +1 -0
- package/dist/index-CUrq0B7g.d.cts +11074 -0
- package/dist/index-CUrq0B7g.d.ts +11074 -0
- package/dist/index.cjs +1594 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +851 -0
- package/dist/index.d.ts +851 -0
- package/dist/index.js +1414 -0
- package/dist/index.js.map +1 -0
- package/dist/webhooks/index.cjs +255 -0
- package/dist/webhooks/index.cjs.map +1 -0
- package/dist/webhooks/index.d.cts +1 -0
- package/dist/webhooks/index.d.ts +1 -0
- package/dist/webhooks/index.js +188 -0
- package/dist/webhooks/index.js.map +1 -0
- package/package.json +99 -0
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "planvortex",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Official Node.js client for the PlanVortex API: connect social accounts, schedule and publish posts, read comments and messages, and verify webhooks.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"planvortex",
|
|
7
|
+
"social-media",
|
|
8
|
+
"scheduling",
|
|
9
|
+
"publishing",
|
|
10
|
+
"facebook",
|
|
11
|
+
"instagram",
|
|
12
|
+
"linkedin",
|
|
13
|
+
"tiktok",
|
|
14
|
+
"twitter",
|
|
15
|
+
"whatsapp",
|
|
16
|
+
"youtube",
|
|
17
|
+
"bluesky",
|
|
18
|
+
"discord",
|
|
19
|
+
"api-client"
|
|
20
|
+
],
|
|
21
|
+
"homepage": "https://planvortex.com/developers",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/taliasoftworks/PlanVortexNode/issues"
|
|
24
|
+
},
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git+https://github.com/taliasoftworks/PlanVortexNode.git"
|
|
28
|
+
},
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"author": "Talia Softworks",
|
|
31
|
+
"type": "module",
|
|
32
|
+
"sideEffects": false,
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">=20"
|
|
35
|
+
},
|
|
36
|
+
"main": "./dist/index.cjs",
|
|
37
|
+
"module": "./dist/index.js",
|
|
38
|
+
"types": "./dist/index.d.ts",
|
|
39
|
+
"exports": {
|
|
40
|
+
".": {
|
|
41
|
+
"import": {
|
|
42
|
+
"types": "./dist/index.d.ts",
|
|
43
|
+
"default": "./dist/index.js"
|
|
44
|
+
},
|
|
45
|
+
"require": {
|
|
46
|
+
"types": "./dist/index.d.cts",
|
|
47
|
+
"default": "./dist/index.cjs"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"./webhooks": {
|
|
51
|
+
"import": {
|
|
52
|
+
"types": "./dist/webhooks/index.d.ts",
|
|
53
|
+
"default": "./dist/webhooks/index.js"
|
|
54
|
+
},
|
|
55
|
+
"require": {
|
|
56
|
+
"types": "./dist/webhooks/index.d.cts",
|
|
57
|
+
"default": "./dist/webhooks/index.cjs"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"./package.json": "./package.json"
|
|
61
|
+
},
|
|
62
|
+
"files": [
|
|
63
|
+
"dist"
|
|
64
|
+
],
|
|
65
|
+
"scripts": {
|
|
66
|
+
"build": "tsup",
|
|
67
|
+
"typecheck": "tsc --noEmit",
|
|
68
|
+
"lint": "eslint .",
|
|
69
|
+
"format": "prettier --write .",
|
|
70
|
+
"format:check": "prettier --check .",
|
|
71
|
+
"test": "vitest run",
|
|
72
|
+
"test:watch": "vitest",
|
|
73
|
+
"test:coverage": "vitest run --coverage",
|
|
74
|
+
"test:live": "vitest run --config vitest.live.config.ts",
|
|
75
|
+
"docs": "typedoc",
|
|
76
|
+
"generate": "tsx scripts/generate-types.ts",
|
|
77
|
+
"check:exports": "publint && attw --pack . --profile node16",
|
|
78
|
+
"prepublishOnly": "npm run build && npm run check:exports"
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"@arethetypeswrong/cli": "^0.18.5",
|
|
82
|
+
"@eslint/js": "^9.21.0",
|
|
83
|
+
"@types/node": "^22.13.5",
|
|
84
|
+
"@typescript-eslint/eslint-plugin": "^8.24.1",
|
|
85
|
+
"@typescript-eslint/parser": "^8.24.1",
|
|
86
|
+
"@vitest/coverage-v8": "^3.0.6",
|
|
87
|
+
"eslint": "^9.21.0",
|
|
88
|
+
"globals": "^15.15.0",
|
|
89
|
+
"msw": "^2.7.3",
|
|
90
|
+
"openapi-typescript": "^7.6.1",
|
|
91
|
+
"prettier": "^3.5.2",
|
|
92
|
+
"publint": "^0.3.24",
|
|
93
|
+
"tsup": "^8.4.0",
|
|
94
|
+
"tsx": "^4.19.3",
|
|
95
|
+
"typedoc": "^0.27.9",
|
|
96
|
+
"typescript": "^5.7.3",
|
|
97
|
+
"vitest": "^3.0.6"
|
|
98
|
+
}
|
|
99
|
+
}
|