-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.26 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.26 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@nobrainers/react-copytext",
"version": "0.2.0",
"description": "No brainer copy text component",
"main": "dist/copy-text.umd.js",
"module": "dist/copy-text.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/copy-text.es.js",
"require": "./dist/copy-text.umd.js"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "vite build",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"test:watch": "vitest src"
},
"keywords": [
"copy",
"text",
"react",
"component"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.4",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.1",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.4.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"lint-staged": {
"*.ts?(x)": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"classnames": "^2.5.1",
"react-icons": "^5.4.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}