-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.04 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "file-signature-in-react",
"version": "2.0.5",
"description": "React Компонент для подписи файла ЭЦП",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"coverage": "vitest run --coverage",
"test": "vitest",
"dev": "vite",
"format": "prettier --write src//**/*.{ts,tsx,css} --config ./.prettierrc",
"lint": "eslint src/**/*.{js,jsx,ts,tsx}",
"lint:fix": "eslint --fix 'src/**/*.{jsx,ts,tsx}'",
"prepare": "husky install",
"preview": "vite preview",
"ts": "tsc --locale ru --watch"
},
"_husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn eslint",
"yarn format"
]
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/file-signature-in-react.es.js",
"require": "./dist/file-signature-in-react.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"main": "./dist/file-signature-in-react.umd.js",
"module": "./dist/file-signature-in-react.es.js",
"types": "./dist/index.d.ts",
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"@types/node": "20.11.9",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"@vitejs/plugin-react": "4.2.1",
"@vitest/coverage-v8": "1.4.0",
"@vitest/ui": "1.4.0",
"eslint": "8.56.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest-dom": "5.1.0",
"eslint-plugin-jsdoc": "48.2.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-tsdoc": "0.2.17",
"happy-dom": "13.3.1",
"husky": "9.0.6",
"lint-staged": "15.2.0",
"prettier": "3.2.4",
"prettier-plugin-delete-eslint-disable": "1.0.5",
"vite": "5.0.12",
"vite-plugin-dts": "3.7.2",
"vite-plugin-linter": "2.1.1",
"vite-tsconfig-paths": "4.3.1",
"vitest": "1.4.0"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"keywords": [
"react-component",
"cripto-pro",
"crypto-pro",
"crypto pro",
"cryptopro",
"crypto",
"cadesplugin",
"cades plugin",
"react",
"file-signature",
"signature",
"КриптоПро CSP",
"file"
],
"author": "bad4iz <fileSignatureInReact@bad4iz.ru>",
"repository": {
"type": "git",
"url": "git+https://github.com/bad4iz/file-signature-in-react.git"
},
"bugs": {
"url": "https://github.com/bad4iz/file-signature-in-react/issues"
},
"license": "ISC",
"homepage": "https://github.com/bad4iz/file-signature-in-react#readme",
"dependencies": {
"crypto-pro-cadesplugin": "1.0.26",
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"commitlint": {
"rules": {
"references-empty": [
2,
"never"
]
},
"parserPreset": {
"parserOpts": {
"issuePrefixes": [
"#"
]
}
}
}
}