-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 908 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 908 Bytes
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
{
"name": "@mesmotronic/classnames",
"version": "1.0.0",
"description": "Easy way to concatenate CSS class names in your web apps",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"lib",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mesmotronic/react-classnames.git"
},
"keywords": [
"react",
"css",
"classname",
"classnames",
"javascript",
"typescript"
],
"author": "Neil Rackett",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mesmotronic/react-classnames/issues"
},
"homepage": "https://github.com/mesmotronic/react-classnames#readme",
"devDependencies": {
"typescript": "^5.8.2",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
}
}