-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.77 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
{
"name": "classigo",
"version": "2.0.0",
"description": "Fast class name utility for TypeScript — strings and objects, zero dependencies.",
"keywords": [
"classnames",
"clsx",
"css-modules",
"css-classes",
"utility",
"typescript",
"type-safe",
"zero-dependency",
"fast",
"performance",
"lightweight",
"esm",
"bun",
"node",
"react",
"vue",
"svelte"
],
"license": "MIT",
"author": "SUP2Ak",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./lite": {
"types": "./dist/lite.d.ts",
"import": "./dist/lite.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.build.json && bun build src/index.ts src/lite.ts --outdir dist --format esm --minify",
"test": "bun test tests/",
"bench": "bun run bench/bench.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"bench/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"bench/**/*.ts\" \"tests/**/*.ts\""
},
"devDependencies": {
"@types/bun": "latest",
"classigo-v1": "npm:classigo@1.0.1",
"classnames": "latest",
"clsx": "latest",
"mitata": "latest",
"prettier": "^3.3.0",
"typescript": "6.0.3"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SUP2Ak/classigo.git"
},
"bugs": {
"url": "https://github.com/SUP2Ak/classigo/issues"
},
"homepage": "https://github.com/SUP2Ak/classigo#readme",
"packageManager": "bun@1.2.13"
}