-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 KB
/
package.json
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
{
"name": "m1sty-classname",
"version": "1.2.0",
"description": "An utility for constructing classname string by passing mixed type of arguments",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"private": false,
"scripts": {
"build": "tsup",
"test": "jest",
"prettier": "prettier --write ./src/**",
"prettier:check": "prettier --check ./src/**",
"eslint": "eslint ./src/**/*.ts --max-warnings 0",
"eslint:dump": "eslint --print-config ./.eslintrc",
"format:fix": "npm run prettier && npm run eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SunM1sty/classname.git"
},
"keywords": [
"classname",
"clsx",
"cn",
"cls",
"classnames"
],
"author": "Vladimir Kozhukhar <m1stygit@gmail.com>",
"contributors": [
"Vladimir Kozhukhar <m1stygit@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SunM1sty/classname/issues"
},
"homepage": "https://github.com/SunM1sty/classname#readme",
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}