@nexushub/client 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/README.md +1105 -0
- package/dist/index.d.mts +356 -0
- package/dist/index.d.ts +356 -0
- package/dist/index.js +4301 -0
- package/dist/index.mjs +4281 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nexushub/client",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"description": "The God-Tier NexusHub SDK",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
|
|
14
|
+
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
|
|
15
|
+
"test": "jest",
|
|
16
|
+
"test:coverage": "jest --coverage",
|
|
17
|
+
"test:debug": "jest --verbose --no-coverage",
|
|
18
|
+
"test:unit": "jest src/__tests__/*.test.ts",
|
|
19
|
+
"test:integration": "jest src/__tests__/integration/*.test.ts",
|
|
20
|
+
"coverage": "jest --coverage --coverageDirectory=coverage",
|
|
21
|
+
"coverage:html": "jest --coverage --coverageDirectory=coverage --coverageReporters=html",
|
|
22
|
+
"coverage:ci": "jest --coverage --coverageDirectory=coverage --coverageReporters=text-lcov | coveralls",
|
|
23
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
24
|
+
"test:watch": "jest --watch",
|
|
25
|
+
"prepublishOnly": "npm run build",
|
|
26
|
+
"type-check": "tsc --noEmit"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"nexushub",
|
|
30
|
+
"cms",
|
|
31
|
+
"analytics",
|
|
32
|
+
"content",
|
|
33
|
+
"headless",
|
|
34
|
+
"nextjs",
|
|
35
|
+
"sdk"
|
|
36
|
+
],
|
|
37
|
+
"author": "Jom Irish - NexusHub",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@eslint/eslintrc": "^3",
|
|
41
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
42
|
+
"@types/fs-extra": "^11.0.4",
|
|
43
|
+
"@types/jest": "^30.0.0",
|
|
44
|
+
"@types/next": "^8.0.7",
|
|
45
|
+
"@types/node": "^25.0.3",
|
|
46
|
+
"@types/node-fetch": "^2.6.13",
|
|
47
|
+
"@types/react": "^19.2.7",
|
|
48
|
+
"@types/react-dom": "^19.2.3",
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^8.50.1",
|
|
50
|
+
"@typescript-eslint/parser": "^8.50.1",
|
|
51
|
+
"eslint": "^9",
|
|
52
|
+
"eslint-config-next": "16.1.1",
|
|
53
|
+
"jest": "^30.2.0",
|
|
54
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
55
|
+
"next": "^16.1.1",
|
|
56
|
+
"ts-jest": "^29.4.6",
|
|
57
|
+
"tsup": "^8.5.1",
|
|
58
|
+
"typescript": "^5.9.3"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"chalk": "^5.6.2",
|
|
62
|
+
"commander": "^14.0.2",
|
|
63
|
+
"dotenv": "^17.2.3",
|
|
64
|
+
"fs-extra": "^11.3.3",
|
|
65
|
+
"node-fetch": "^3.3.2",
|
|
66
|
+
"ora": "^9.0.0",
|
|
67
|
+
"web-vitals": "^5.1.0"
|
|
68
|
+
},
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"react": "^18.2.0 || ^19.0.0",
|
|
71
|
+
"react-dom": "^18.2.0 || ^19.0.0"
|
|
72
|
+
},
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
|
+
}
|
|
76
|
+
}
|