-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "react-powerglitch",
"version": "1.0.3",
"types": "./types/lib/index.d.ts",
"main": "./lib/react-powerglitch.umd.js",
"module": "./lib/react-powerglitch.es.js",
"exports": {
".": {
"types": "./types/lib/index.d.ts",
"import": "./lib/react-powerglitch.es.js",
"require": "./lib/react-powerglitch.umd.js"
}
},
"files": [
"/lib",
"/types"
],
"scripts": {
"dev": "vite --config vite-docs.config.ts",
"build": "vite --config vite-docs.config.ts build && npm run coverage && npx typedoc && vite build && tsc",
"preview": "vite preview",
"test": "jest",
"coverage": "jest --coverage"
},
"dependencies": {
"powerglitch": "^2.3.2"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitejs/plugin-react": "^4.1.0",
"babel-jest": "^29.7.0",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom-testing-mocks": "^1.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2",
"vite": "^4.4.9"
}
}