-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "@jhnnsrs/fakts",
"version": "0.0.25",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"p": "yarn publish --access public"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/fakts.umd.cjs",
"module": "./dist/fakts.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/fakts.js",
"require": "./dist/fakts.umd.js"
}
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"happy-dom": "^6.0.4",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.4.3",
"react-router-dom": "^6.4.3",
"typescript": "^4.6.4",
"vite": "^5.0.11",
"vite-plugin-dts": "^1.6.3",
"vitest": "^0.23.4"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.4.3",
"react-router-dom": "^6.4.3"
},
"dependencies": {
"any-signal": "^4.1.1"
}
}