-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.94 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
{
"name": "klsx",
"description": "Same as clsx but \"maybe\" better",
"version": "0.3.3",
"type": "module",
"author": {
"name": "Walter Purcaro",
"url": "https://github.com/vuolter"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vuolter/klsx.git"
},
"url": "https://github.com/vuolter/klsx",
"keywords": [
"cn",
"cx",
"kx",
"klsx",
"clsx",
"class",
"classix",
"classname",
"classnames",
"bun"
],
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "bun compile && tsdown",
"format": "prettier . --cache --experimental-cli --write",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint --cache-strategy content --concurrency auto --fix .",
"compile": "tsgo --build --noEmit",
"bench": "bun ./tests/bench",
"postinstall": "npm install --force --ignore-scripts --package-lock-only --silent"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@prettier/plugin-oxc": "^0.1.3",
"@socketsecurity/bun-security-scanner": "^1.1.2",
"@types/bun": "^1.3.11",
"@typescript/native-preview": "^7.0.0-dev.20260328.1",
"classix": "^2.2.11",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-perfectionist": "^5.7.0",
"eslint-plugin-regexp": "^3.1.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-tsdoc": "^0.5.2",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"tinybench": "^6.0.0",
"tsdown": "^0.21.6",
"typescript-eslint": "^8.57.2"
},
"engines": {
"node": ">=18"
},
"sideEffects": false
}