-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.57 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
{
"name": "cvu",
"description": "A tiny, performant, utility for constructing variant based CSS class strings.",
"version": "1.0.0",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@8.15.5",
"author": "Eric Taylor <eric@daxos.com> (https://github.com/erictaylor)",
"repository": {
"type": "git",
"url": "git+https://github.com/erictaylor/cvu.git"
},
"homepage": "https://github.com/erictaylor/cvu#readme",
"bugs": "https://github.com/erictaylor/cvu/issues",
"keywords": [
"class variance",
"classes",
"classname",
"classnames",
"css",
"cvu",
"cva",
"variants"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"check": "biome check ./",
"check:ci": "biome ci ./",
"format": "biome format --write ./",
"prepublishOnly": "pnpm run build",
"size": "size-limit",
"size:why": "size-limit --why",
"test": "vitest"
},
"dependencies": {
"clsx": "^2.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@size-limit/preset-small-lib": "^11.1.2",
"cspell": "^8.6.1",
"lefthook": "^1.6.7",
"size-limit": "^11.1.2",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "600 B"
}
],
"sideEffects": false
}