@dodopayments/tanstack 0.1.1 → 0.1.2
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 +31 -36
- package/dist/checkout/checkout.d.ts.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/webhooks/webhooks.d.ts.map +1 -1
- package/package.json +54 -55
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webhooks.d.ts","sourceRoot":"","sources":["../../src/webhooks/webhooks.ts"],"names":[],"mappings":"AAIA,OAAO,EACL,KAAK,oBAAoB,EAE1B,MAAM,4BAA4B,CAAC;AAGpC,eAAO,MAAM,QAAQ,GAAI,kCAGtB,oBAAoB,MAGP,SAAS,OAAO,
|
|
1
|
+
{"version":3,"file":"webhooks.d.ts","sourceRoot":"","sources":["../../src/webhooks/webhooks.ts"],"names":[],"mappings":"AAIA,OAAO,EACL,KAAK,oBAAoB,EAE1B,MAAM,4BAA4B,CAAC;AAGpC,eAAO,MAAM,QAAQ,GAAI,kCAGtB,oBAAoB,MAGP,SAAS,OAAO,6CA+C/B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,56 +1,55 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@dodopayments/tanstack",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "rollup -c",
|
|
9
|
+
"dev": "rollup -c -w",
|
|
10
|
+
"format": "prettier --write .",
|
|
11
|
+
"check-format": "prettier --check .",
|
|
12
|
+
"check-types": "tsc --noEmit"
|
|
13
|
+
},
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/index.js",
|
|
18
|
+
"require": "./dist/index.cjs"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@dodopayments/core": "^0.1.7",
|
|
23
|
+
"@tanstack/react-start": "^1.129.8"
|
|
24
|
+
},
|
|
25
|
+
"keywords": [
|
|
26
|
+
"payments",
|
|
27
|
+
"tanstack",
|
|
28
|
+
"webhooks",
|
|
29
|
+
"checkout",
|
|
30
|
+
"api",
|
|
31
|
+
"typescript"
|
|
32
|
+
],
|
|
33
|
+
"author": {
|
|
34
|
+
"name": "Dodo Payments",
|
|
35
|
+
"email": "support@dodopayments.com",
|
|
36
|
+
"url": "https://dodopayments.com"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@dodo/typescript-config": "*",
|
|
40
|
+
"rollup": "^4.0.0",
|
|
41
|
+
"@rollup/plugin-typescript": "^11.0.0",
|
|
42
|
+
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
43
|
+
"@rollup/plugin-commonjs": "^25.0.0",
|
|
44
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
45
|
+
"rimraf": "^5.0.0"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"zod": "^3.25.73"
|
|
49
|
+
},
|
|
50
|
+
"type": "module",
|
|
51
|
+
"files": [
|
|
52
|
+
"dist",
|
|
53
|
+
"llm-prompt.txt"
|
|
54
|
+
]
|
|
55
|
+
}
|