This repository was archived by the owner on Jun 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
139 lines (139 loc) · 3.44 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "pretty-checkbox-react",
"version": "3.2.0",
"description": "A set of React components build around Pretty Checkbox",
"keywords": [
"Pretty",
"Radio",
"Switch",
"Pretty Checkbox",
"Pretty Checkbox React",
"pretty-checkbox",
"pretty-checkbox-react",
"Components",
"input controls",
"React",
"React Hooks",
"CSS",
"Checkbox",
"Preact"
],
"homepage": "https://github.com/atomicpages/pretty-checkbox-react#readme",
"bugs": {
"url": "https://github.com/atomicpages/pretty-checkbox-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomicpages/pretty-checkbox-react.git"
},
"license": "MIT",
"author": "Dennis Thompson",
"maintainers": [
"Dennis Thompson"
],
"scripts": {
"lint": "eslint src --ext=js,ts,tsx",
"prepare": "husky install",
"test": "jest",
"test:fast": "jest --collectCoverage=false",
"clean": "rimraf pkg/**",
"build": "pika-pack build",
"ts-check": "tsc --noEmit",
"start": "cd docs && yarn && yarn start",
"prune": "rimraf coverage pkg node_modules package-lock.json",
"version": "npm run build",
"prepush": "npm-run-all -p lint ts-check -s test:fast"
},
"lint-staged": {
"*.{ts,tsx,js,json}": [
"prettier --write",
"eslint --fix"
],
"*.{md,yml,yaml}": "prettier --write"
},
"prettier": {
"proseWrap": "always",
"singleQuote": true
},
"dependencies": {
"clsx": "^1.1.1",
"nanoid": "^3.0.0",
"react-merge-refs": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@djthoms/eslint-config": "^5.0.1",
"@djthoms/prettier-config": "^4.0.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/jest": "^28.0.0",
"@types/node": "^16.0.0",
"@types/react": "^17.0.0",
"flowgen": "^1.16.0",
"husky": "^8.0.0",
"jest": "^28.0.0",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": "^13.0.0",
"npm-run-all": "^4.1.5",
"pika-plugin-legacy-browser": "^2.0.0",
"pika-plugin-typedefs-to-flow": "^0.0.3",
"pretty-checkbox": "^3.0.3",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-test-renderer": "^17.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"ts-jest": "^28.0.0",
"typescript": "^4.5.3"
},
"peerDependencies": {
"pretty-checkbox": "^3.0.0",
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"args": [
"--target",
"es2019"
]
}
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-node"
],
[
"pika-plugin-legacy-browser",
{
"name": "PrettyCheckboxReact",
"format": "umd",
"minify": true,
"external": [
"react"
],
"globals": {
"react": "React"
},
"sourcemap": true
}
],
[
"pika-plugin-typedefs-to-flow"
]
]
}
}