@honest-pitches/pitch-sdk 0.4.6
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/CHANGELOG.md +197 -0
- package/README.md +157 -0
- package/dist/index.cjs +17409 -0
- package/dist/index.cjs.map +7 -0
- package/dist/index.d.mts +12 -0
- package/dist/index.mjs +17379 -0
- package/dist/index.mjs.map +7 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@honest-pitches/pitch-sdk",
|
|
3
|
+
"version": "0.4.6",
|
|
4
|
+
"description": "User-scoped SDK for defining and managing a user's pitches. Requires a per-user JWT. Data layer is the official node-appwrite SDK (TablesDB + Functions).",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.mts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.mts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"CHANGELOG.md"
|
|
20
|
+
],
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://git.neutronix.com/honest-pitches/honest-pitches-pitcher-sdk.git"
|
|
24
|
+
},
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"registry": "https://registry.npmjs.org/",
|
|
27
|
+
"access": "public",
|
|
28
|
+
"provenance": false
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"node-appwrite": "~23.1.0"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@types/node": "^22.0.0",
|
|
35
|
+
"esbuild": "^0.27.0",
|
|
36
|
+
"typescript": "^5.7.0",
|
|
37
|
+
"vitest": "^3.1.0"
|
|
38
|
+
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=20"
|
|
41
|
+
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "node build.mjs",
|
|
44
|
+
"refresh-vendor": "node scripts/copy-vendor-dist.mjs",
|
|
45
|
+
"test": "vitest run",
|
|
46
|
+
"test:ci": "pnpm run typecheck && pnpm run test && pnpm run test:contract:dev-loop-workspace && pnpm run test:contract:package-identity && pnpm run test:contract:publish-workflow && pnpm run test:contract:npmrc && pnpm run test:contract:bundled-deps && pnpm run test:contract:copy-vendor-dist",
|
|
47
|
+
"test:contract:dev-loop-workspace": "node --test scripts/dev-loop-workspace.contract.test.mjs",
|
|
48
|
+
"test:contract:package-identity": "node --test scripts/package-identity.contract.test.mjs",
|
|
49
|
+
"test:contract:publish-workflow": "node --test scripts/publish-workflow.contract.test.mjs",
|
|
50
|
+
"test:contract:npmrc": "node --test scripts/npmrc.contract.test.mjs",
|
|
51
|
+
"test:contract:bundled-deps": "node --test scripts/bundled-deps.contract.test.mjs",
|
|
52
|
+
"test:contract:copy-vendor-dist": "node --test scripts/copy-vendor-dist.contract.test.mjs",
|
|
53
|
+
"typecheck": "tsc --noEmit"
|
|
54
|
+
}
|
|
55
|
+
}
|