digitinary-ui 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -0
- package/package.json +84 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# arena-ui
|
|
2
|
+
|
|
3
|
+
> Arena UI System
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/arena-ui)
|
|
6
|
+
[](https://standardjs.com)
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install --save arena-ui
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```jsx
|
|
17
|
+
import React, { Component } from 'react'
|
|
18
|
+
|
|
19
|
+
import MyComponent from 'arena-ui'
|
|
20
|
+
import 'arena-ui/dist/index.css'
|
|
21
|
+
|
|
22
|
+
class Example extends Component {
|
|
23
|
+
render() {
|
|
24
|
+
return <MyComponent />
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "digitinary-ui",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Digitinary UI Library",
|
|
5
|
+
"author": "Digitinary Company",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "digitinary-ui"
|
|
9
|
+
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"source": "src/index.js",
|
|
13
|
+
"module": "dist/index.js",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"import": "./dist/index.js",
|
|
17
|
+
"require": "./dist/index.js",
|
|
18
|
+
"types": "./dist/types/index.d.ts"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=10"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"react",
|
|
26
|
+
"ui",
|
|
27
|
+
"component-library"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "webpack --mode production",
|
|
31
|
+
"build:types": "tsc",
|
|
32
|
+
"lint": "eslint src --ext ts,tsx",
|
|
33
|
+
"pre-commit": "pretty-quick --staged",
|
|
34
|
+
"test": "jest",
|
|
35
|
+
"prepare": "husky"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"react": "^18.3.1",
|
|
39
|
+
"react-dom": "^18.2.25"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@babel/core": "^7.24.4",
|
|
43
|
+
"@babel/preset-env": "^7.24.4",
|
|
44
|
+
"@babel/preset-react": "^7.24.1",
|
|
45
|
+
"@babel/preset-typescript": "^7.24.1",
|
|
46
|
+
"@eslint/js": "^9.0.0",
|
|
47
|
+
"@testing-library/react": "^13.4.0",
|
|
48
|
+
"@types/jest": "^29.5.12",
|
|
49
|
+
"@types/react": "18.3.1",
|
|
50
|
+
"@types/react-dom": "18.2.25",
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^7.7.0",
|
|
52
|
+
"@typescript-eslint/parser": "^7.7.0",
|
|
53
|
+
"babel-loader": "^8.3.0",
|
|
54
|
+
"copy-webpack-plugin": "^12.0.2",
|
|
55
|
+
"css-loader": "^6.7.3",
|
|
56
|
+
"eslint": "^8.57.0",
|
|
57
|
+
"eslint-plugin-react": "^7.34.1",
|
|
58
|
+
"globals": "^15.0.0",
|
|
59
|
+
"husky": "^9.0.11",
|
|
60
|
+
"jest": "^27.4.7",
|
|
61
|
+
"pretty-quick": "^4.0.0",
|
|
62
|
+
"sass": "^1.75.0",
|
|
63
|
+
"sass-loader": "^13.2.2",
|
|
64
|
+
"style-loader": "^4.0.0",
|
|
65
|
+
"svg-inline-loader": "^0.8.2",
|
|
66
|
+
"ts-loader": "^9.5.1",
|
|
67
|
+
"typescript": "^4.9.5",
|
|
68
|
+
"typescript-eslint": "^7.7.0",
|
|
69
|
+
"url-loader": "^4.1.1",
|
|
70
|
+
"webpack": "^5.91.0",
|
|
71
|
+
"webpack-bundle-analyzer": "^4.10.2",
|
|
72
|
+
"webpack-cli": "^5.1.4",
|
|
73
|
+
"webpack-dev-server": "^5.0.4"
|
|
74
|
+
},
|
|
75
|
+
"files": [
|
|
76
|
+
"dist"
|
|
77
|
+
],
|
|
78
|
+
"types": "dist/index.d.ts",
|
|
79
|
+
"dependencies": {
|
|
80
|
+
"@tippyjs/react": "^4.2.6",
|
|
81
|
+
"jsx-runtime": "^1.2.0",
|
|
82
|
+
"moment": "^2.30.1"
|
|
83
|
+
}
|
|
84
|
+
}
|