-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.77 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
{
"name": "react-take",
"version": "0.2.6",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./struct": {
"require": "./dist/struct.js",
"import": "./dist/struct.mjs",
"types": "./dist/struct.d.ts"
}
},
"author": {
"name": "Jose Albizures",
"email": "albizures@vk.com",
"url": "https://albizures.com"
},
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsup",
"preview": "vite preview",
"test": "pnpm test:types && pnpm test:lint && vitest",
"test:types": "tsc --noEmit",
"test:lint": "eslint .",
"coverage": "vitest run --coverage",
"prerelease": "pnpm build",
"release": "standard-version && git push --follow-tags origin HEAD"
},
"dependencies": {
"mitt": "^3.0.0"
},
"peerDependencies": {
"react": "^17.0.2 || ^18"
},
"devDependencies": {
"@albizures/prettier-config": "^1.0.1",
"@albizures/tsconfig": "^0.1.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vitejs/plugin-react": "^1.3.2",
"c8": "^7.11.3",
"eslint": "^8.18.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^20.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup-plugin-dts": "^4.2.2",
"standard-version": "^9.5.0",
"tsup": "^6.1.2",
"typescript": "^4.7.4",
"vite": "^2.9.12",
"vitest": "^0.16.0"
}
}