-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.48 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
83
84
85
86
87
{
"name": "@interruptor/react-monetization",
"version": "1.1.0",
"description": "A React library for tracking Web Monetization state",
"license": "MIT",
"homepage": "https://github.com/InterruptorPt/react-monetization",
"repository": {
"type": "git",
"url": "https://github.com/InterruptorPt/react-monetization.git"
},
"bugs": "https://github.com/InterruptorPt/react-monetization/issues",
"module": "dist/react-monetization.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "eslint src --ext js,ts,tsx --fix",
"prepare": "tsdx build && husky install",
"size": "size-limit",
"analyze": "size-limit --why",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@semantic-release/git": "^9.0.0",
"@size-limit/preset-small-lib": "^5.0.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"@webmonetization/types": "0.0.0",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^4.10.0",
"husky": "^7.0.0",
"jest-extended": "^0.11.5",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semantic-release": "^17.4.4",
"size-limit": "^5.0.2",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --fix --quiet",
"*.{json,yml,graphql}": "prettier --write"
},
"publishConfig": {
"access": "public"
},
"size-limit": [
{
"path": "dist/react-monetization.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-monetization.esm.js",
"limit": "10 KB"
}
]
}