generated from egoist/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "react-cva",
"version": "0.0.0",
"description": "styled helper for Class Variance Authority",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"patch": "patch-package",
"build-fast": "tsup src/index.tsx --format cjs,esm",
"build": "pnpm run build-fast -- --dts-resolve ",
"test": "vitest run",
"prepublishOnly": "pnpm run patch & pnpm run build"
},
"license": "MIT",
"devDependencies": {
"@egoist/prettier-config": "1.0.0",
"@milahu/patch-package-with-pnpm-support": "^6.4.8",
"@types/react": "^17.0.40",
"class-variance-authority": "^0.1.0",
"prettier": "2.5.1",
"react": "^17.0.2",
"tsup": "5.12.1",
"typescript": "4.6.2",
"vitest": "0.6.1"
},
"peerDependencies": {
"react": ">= 16.3.0",
"@types/react": ">= 16.3.0"
}
}