-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.35 KB
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
73
74
75
76
{
"name": "reclassify",
"version": "0.5.2",
"description": "Automatic JSX runtime for React that accepts array and object className values.",
"keywords": [
"classname",
"classnames",
"clsx",
"jsx-runtime",
"react"
],
"license": "MIT",
"files": [
"dist",
"README.md"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./jsx-runtime": {
"types": "./dist/jsx-runtime.d.ts",
"import": "./dist/jsx-runtime.js",
"require": "./dist/jsx-runtime.cjs"
},
"./jsx-dev-runtime": {
"types": "./dist/jsx-dev-runtime.d.ts",
"import": "./dist/jsx-dev-runtime.js",
"require": "./dist/jsx-dev-runtime.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "vp pack",
"build:examples": "vp pack && vp run --filter ./apps/vite build && vp run --filter ./apps/next build",
"build:next": "vp pack && vp run --filter ./apps/next build",
"build:vite": "vp pack && vp run --filter ./apps/vite build",
"check": "vp run test && vp run typecheck && vp run build:examples",
"clean": "rm -rf dist apps/vite/dist apps/vite/.vite apps/next/.next",
"dev": "vp run dev:vite",
"dev:lib": "vp pack --watch --no-clean",
"dev:next": "vp pack && concurrently -k -n lib,next -c cyan,green \"vp run dev:lib\" \"vp run --filter ./apps/next dev\"",
"dev:vite": "vp pack && concurrently -k -n lib,vite -c cyan,magenta \"vp run dev:lib\" \"vp run --filter ./apps/vite dev\"",
"prepack": "vp pack",
"test": "vp run build && vp run test:unit && vp run test:types",
"test:unit": "vp test run",
"test:types": "tsc -p src/tsconfig-types.json --noEmit",
"typecheck": "tsc --noEmit",
"prepare": "vp config"
},
"dependencies": {
"clsx": "^2"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@types/babel__core": "^7.20.5",
"@types/node": "^24.5.1",
"@types/react": "^19.1.13",
"concurrently": "^9.2.1",
"react": "^19.2.4",
"typescript": "catalog:",
"vite-plus": "catalog:"
},
"peerDependencies": {
"react": ">=17"
},
"packageManager": "pnpm@10.28.1"
}