-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "react-styled-factory",
"version": "0.0.10",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/kasper573/react-styled-factory.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --clean --dts --format esm,cjs --out-dir dist",
"dev": "pnpm build --watch",
"format": "prettier --write .",
"prepublishOnly": "npm run build",
"test": "vitest run --typecheck",
"test:watch": "vitest --typecheck"
},
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18.2.61",
"@types/jest": "^29.5.12",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@vanilla-extract/css": "1.15.2",
"@vanilla-extract/recipes": "0.5.3",
"@vanilla-extract/vite-plugin": "4.0.10",
"@vitejs/plugin-react": "4.2.1",
"react": "^18.2.0",
"vite": "5.2.13",
"vitest": "1.3.1",
"prettier": "^3",
"typescript": "^5",
"tsup": "^8",
"jsdom": "^24.0.0"
},
"packageManager": "[email protected]"
}