@transmit-security/ui 1.0.0-beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/README.md +17 -0
  2. package/dist/ui.es.js +66569 -0
  3. package/package.json +46 -0
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@transmit-security/ui",
3
+ "private": false,
4
+ "description": "React UI lib of Transmt sec",
5
+ "version": "1.0.0-beta",
6
+ "main": "dist/ui.es.js",
7
+ "module": "dist/ui.es.js",
8
+ "author": "htrs-sec",
9
+ "repository": "https://www.github.com/htrs-sec/@transmit-security/ui",
10
+ "license": "MIT",
11
+ "files": [
12
+ "dist",
13
+ "scripts"
14
+ ],
15
+ "publishConfig": {
16
+ "access": "public"
17
+ },
18
+ "scripts": {
19
+ "build": "tsc"
20
+ },
21
+ "dependencies": {
22
+ "classnames": "^2.5.1"
23
+ },
24
+ "peerDependencies": {
25
+ "antd": "^5",
26
+ "react": "17.0.2",
27
+ "react-dom": "17.0.2"
28
+ },
29
+ "devDependencies": {
30
+ "husky": "9.1.4",
31
+ "lint-staged": "13.1.4",
32
+ "typescript": "^5.6.2"
33
+ },
34
+ "husky": {
35
+ "hooks": {
36
+ "commit-msg": "commitlint .commitlintrc.js -E HUSKY_GIT_PARAMS",
37
+ "pre-commit": "lint-staged"
38
+ }
39
+ },
40
+ "lint-staged": {
41
+ "*": [
42
+ "eden lint format",
43
+ "git add"
44
+ ]
45
+ }
46
+ }