-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.33 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
{
"name": "@freemius/checkout",
"private": false,
"description": "Freemius Checkout JS, without jQuery or other dependencies, written in TypeScript as ES Modules.",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint ./src",
"build:module": "vite build --config vite.module.config.ts",
"build:global": "vite build --config vite.global.config.ts",
"build:adapter": "vite build --config vite.adapter.config.ts",
"build:lib": "npm run build:module && npm run build:global && npm run build:adapter",
"deploysite": "npm run build && netlify deploy --dir=dist --prod",
"prepublish": "npm run build:lib",
"test": "jest",
"prepare": "ts-patch install -s",
"prettier:check": "prettier --check ./src ./tests ./cypress",
"prettier:write": "prettier --write ./src ./tests ./cypress"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"ajv": "^8.17.1",
"cypress": "^13.14.2",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-ts-auto-mock": "^2.1.0",
"prettier": "^3.3.3",
"ts-auto-mock": "^3.7.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.2.1"
},
"license": "MIT",
"files": [
"lib",
"README.md",
"LICENSE"
],
"main": "./lib/module/checkout.cjs",
"module": "./lib/module/checkout.js",
"exports": {
".": {
"import": "./lib/module/checkout.js",
"require": "./lib/module/checkout.cjs"
}
},
"types": "./lib/module/checkout.d.ts",
"author": {
"name": "Freemius Inc",
"email": "[email protected]",
"url": "https://freemius.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Freemius/freemius-checkout-js.git"
},
"keywords": [
"freemius",
"wordpress",
"checkout"
],
"homepage": "https://fs-checkout-js.netlify.app/",
"bugs": "https://github.com/Freemius/freemius-checkout-js/issues",
"type": "module"
}