@happyvertical/accounting 0.74.8
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/AGENT.md +33 -0
- package/LICENSE +7 -0
- package/dist/chunks/OAuthClient-fC3cd77X.js +17475 -0
- package/dist/chunks/OAuthClient-fC3cd77X.js.map +1 -0
- package/dist/chunks/index-D0bqSiCo.js +893 -0
- package/dist/chunks/index-D0bqSiCo.js.map +1 -0
- package/dist/chunks/index-DO-cM79R.js +772 -0
- package/dist/chunks/index-DO-cM79R.js.map +1 -0
- package/dist/cli/claude-context.d.ts +3 -0
- package/dist/cli/claude-context.d.ts.map +1 -0
- package/dist/cli/claude-context.js +21 -0
- package/dist/cli/claude-context.js.map +1 -0
- package/dist/index.d.ts +53 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +55 -0
- package/dist/index.js.map +1 -0
- package/dist/providers/quickbooks/index.d.ts +43 -0
- package/dist/providers/quickbooks/index.d.ts.map +1 -0
- package/dist/providers/stripe/index.d.ts +26 -0
- package/dist/providers/stripe/index.d.ts.map +1 -0
- package/dist/types.d.ts +670 -0
- package/dist/types.d.ts.map +1 -0
- package/metadata.json +30 -0
- package/package.json +58 -0
package/metadata.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@happyvertical/accounting",
|
|
3
|
+
"path": "packages/accounting",
|
|
4
|
+
"position": {
|
|
5
|
+
"index": 1,
|
|
6
|
+
"count": 30
|
|
7
|
+
},
|
|
8
|
+
"description": "Multi-provider accounting integration for AR/AP sync and audit with QuickBooks, Stripe, and more",
|
|
9
|
+
"provides": [
|
|
10
|
+
"Multi-provider accounting integration for AR/AP sync and audit with QuickBooks, Stripe, and more"
|
|
11
|
+
],
|
|
12
|
+
"implements": [],
|
|
13
|
+
"requires": {
|
|
14
|
+
"workspace": [
|
|
15
|
+
"@happyvertical/utils"
|
|
16
|
+
],
|
|
17
|
+
"externalHappyVertical": [],
|
|
18
|
+
"external": [
|
|
19
|
+
"intuit-oauth"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"dependents": [],
|
|
23
|
+
"stability": {
|
|
24
|
+
"level": "stable",
|
|
25
|
+
"reason": "Primary package surface is described as implemented and production-oriented."
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"accounting"
|
|
29
|
+
]
|
|
30
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@happyvertical/accounting",
|
|
3
|
+
"version": "0.74.8",
|
|
4
|
+
"description": "Multi-provider accounting integration for AR/AP sync and audit with QuickBooks, Stripe, and more",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"have-accounting-context": "./dist/cli/claude-context.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"AGENT.md",
|
|
22
|
+
"metadata.json"
|
|
23
|
+
],
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"registry": "https://registry.npmjs.org",
|
|
26
|
+
"access": "public"
|
|
27
|
+
},
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/happyvertical/sdk.git",
|
|
31
|
+
"directory": "packages/accounting"
|
|
32
|
+
},
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/happyvertical/sdk/issues"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://github.com/happyvertical/sdk/tree/main/packages/accounting#readme",
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"intuit-oauth": "^4.2.3",
|
|
40
|
+
"@happyvertical/utils": "0.74.8"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/node": "25.0.10",
|
|
44
|
+
"typescript": "^5.9.3",
|
|
45
|
+
"vite": "^7.3.2",
|
|
46
|
+
"vite-plugin-dts": "^4.5.4",
|
|
47
|
+
"vitest": "^4.1.5"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"test": "npx vitest run",
|
|
51
|
+
"test:watch": "npx vitest",
|
|
52
|
+
"build": "vite build",
|
|
53
|
+
"build:watch": "vite build --watch",
|
|
54
|
+
"docs": "typedoc --plugin typedoc-plugin-markdown --out docs --entryPoints ./src/index.ts --tsconfig ./tsconfig.json --excludePrivate --excludeInternal --hideGenerator --fileExtension .md --readme none --categorizeByGroup false --includeVersion false --hidePageHeader --hidePageTitle false --outputFileStrategy modules",
|
|
55
|
+
"clean": "rm -rf dist docs",
|
|
56
|
+
"dev": "npm run build:watch & npm run test:watch"
|
|
57
|
+
}
|
|
58
|
+
}
|