-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
{
"name": "classic-react-components",
"version": "0.2.0",
"description": "A great collection of React utility components",
"keywords": [
"react utility components",
"components",
"utility components"
],
"repository": {
"type": "git",
"url": "https://github.com/Ashish-simpleCoder/classic-react-components.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://github.com/Ashish-simpleCoder/classic-react-components",
"author": "Ashish-simpleCoder",
"license": "MIT",
"private": false,
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"prepare": "pnpm build",
"release": "changeset publish",
"type-check": "tsc",
"size": "size-limit",
"cs": "pnpm changeset",
"format-code": "prettier --write ./src",
"test": "vitest --coverage"
},
"peerDependencies": {
"react": ">=16.8"
},
"dependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@size-limit/preset-small-lib": "^8.2.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/node": "^18.15.13",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.0.11",
"@types/testing-library__jest-dom": "^5.14.5",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-istanbul": "^0.30.1",
"jsdom": "^21.1.1",
"prettier": "^2.8.7",
"react-dom": "^18.2.0",
"size-limit": "^8.2.4",
"terser": "^5.17.1",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^4.2.0",
"vitest": "^0.30.1"
},
"engines": {
"node": ">=14"
}
}