-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.02 KB
/
package.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "paddle-billing",
"version": "3.1.0",
"description": "Paddle Billing API and Webhooks wrapper with detailed TypeScript types",
"sideEffects": false,
"main": "./index.js",
"module": "./index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"require": {
"types": "./index.d.ts",
"default": "./index.js"
},
"import": {
"types": "./index.d.mts",
"default": "./index.mjs"
}
},
"./api": {
"require": {
"types": "./api/index.d.ts",
"default": "./api/index.js"
},
"import": {
"types": "./api/index.d.mts",
"default": "./api/index.mjs"
}
},
"./webhooks": {
"require": {
"types": "./webhooks/index.d.ts",
"default": "./webhooks/index.js"
},
"import": {
"types": "./webhooks/index.d.mts",
"default": "./webhooks/index.mjs"
}
},
"./web": {
"require": {
"types": "./web/index.d.ts",
"default": "./web/index.js"
},
"import": {
"types": "./web/index.d.mts",
"default": "./web/index.mjs"
}
}
},
"scripts": {
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kossnocorp/paddle-billing.git"
},
"keywords": [
"Paddle",
"Paddle Billing",
"Paddle Webhooks"
],
"author": "Sasha Koss <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kossnocorp/paddle-billing/issues"
},
"homepage": "https://github.com/kossnocorp/paddle-billing#readme",
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.20",
"@babel/plugin-transform-modules-commonjs": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.22.15",
"@vitest/browser": "^0.34.6",
"babel-plugin-add-import-extension": "^1.6.0",
"babel-plugin-add-module-exports": "^1.0.4",
"playwright": "^1.39.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}