-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.25 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
{
"name": "@tebexio/tebex.js",
"version": "1.5.0",
"description": "Integrate Tebex Checkout directly into your own website or game using our embedded checkout experience.",
"type": "module",
"main": "dist/tebex.cjs",
"module": "dist/tebex.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/tebex.cjs",
"import": "./dist/tebex.mjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"./.browserslistrc"
],
"keywords": [
"tebex",
"tebex.io",
"tebex.js",
"checkout"
],
"license": "MIT",
"author": "@tebexio",
"homepage": "https://js.tebex.io",
"bugs": {
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tebexio/Tebex.js.git"
},
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "npm run build:browser && npm run build:npm",
"build:browser": "rollup -c --environment BUILD:browser",
"build:npm": "rollup -c --environment BUILD:npm",
"start": "npm run start:pages & npm run start:rollup",
"start:pages": "WRANGLER_LOG=info && wrangler pages dev --port 8787 --compatibility-date=2024-05-12 ./example",
"start:rollup": "rollup -c -w --environment SERVER,BUILD:browser",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-html": "^1.0.4",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@vitest/browser": "^2.1.5",
"@vitest/coverage-istanbul": "^2.1.5",
"jsdom": "^24.1.0",
"playwright": "^1.49.0",
"rollup": "^4.17.2",
"rollup-plugin-bundle-inject": "^1.0.3",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dev": "^2.0.4",
"rollup-plugin-dotenv": "^0.5.1",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-html": "^0.2.1",
"rollup-plugin-import-css": "^3.5.0",
"rollup-plugin-node-globals": "^1.4.0",
"vitest": "^2.1.5",
"wrangler": "^3.56.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"nanoevents": "^8.0.0",
"zoid": "^9.0.86"
}
}