@atomazing-org/design-system 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 +34 -0
- package/package.json +49 -0
package/README.MD
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Atomazing Design System
|
|
2
|
+
|
|
3
|
+
[](http://opensource.org/licenses/MIT)
|
|
4
|
+
|
|
5
|
+
The `@atomazing/design-system` provides a set of useful utils, mui style extensions and components to build your application the way Atomazing does.
|
|
6
|
+
|
|
7
|
+
## Build-on
|
|
8
|
+
|
|
9
|
+
`"@mui/material": "^5.15.21"`
|
|
10
|
+
|
|
11
|
+
`"@mui/icons-material": "^5.15.11"`
|
|
12
|
+
|
|
13
|
+
`"@emotion/css": "^11.11.2"`
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
Just install package from npm
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
npm i @atomazing/design-system
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Package structure
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
├── src
|
|
27
|
+
│ ├── components // React components
|
|
28
|
+
│ ├── styles // Mui style extensions and themeing tools
|
|
29
|
+
│ └──utils // Useful util functions
|
|
30
|
+
├── index.ts
|
|
31
|
+
├── tsconfig.json
|
|
32
|
+
├── package.json
|
|
33
|
+
└── README.md
|
|
34
|
+
```
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atomazing-org/design-system",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "npx tsc",
|
|
11
|
+
"format": "npm run format:eslint && npm run format:prettier",
|
|
12
|
+
"format:eslint": "npm run lint:eslint -- --fix",
|
|
13
|
+
"format:prettier": "npm run lint:prettier -- --write",
|
|
14
|
+
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:ts",
|
|
15
|
+
"lint:eslint": "eslint \"**/*.{js,ts,tsx}\"",
|
|
16
|
+
"lint:prettier": "prettier \"**/*.{json,js,ts,tsx}\" --check",
|
|
17
|
+
"lint:ts": "tsc --noEmit",
|
|
18
|
+
"clean": "rimraf node_modules"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/atomazing/design-system",
|
|
21
|
+
"keywords": [
|
|
22
|
+
"atomazing-org",
|
|
23
|
+
"styles",
|
|
24
|
+
"mui",
|
|
25
|
+
"utils"
|
|
26
|
+
],
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public",
|
|
29
|
+
"registry": "https://registry.npmjs.org/"
|
|
30
|
+
},
|
|
31
|
+
"author": "PonomarevBPM + MarkSinD",
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"description": "A library providing a set of useful utils, mui style extensions and components to build your application.",
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@atomazing-org/eslint-config": "1.1.0",
|
|
36
|
+
"typescript": "5.7.3",
|
|
37
|
+
"@types/react": "18.3.3"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"react": "18.3.1",
|
|
41
|
+
"react-dom": "18.3.1",
|
|
42
|
+
"@mui/material": "5.15.21",
|
|
43
|
+
"@mui/icons-material": "5.15.11",
|
|
44
|
+
"@emotion/css": "11.11.2",
|
|
45
|
+
"@emotion/styled": "11.11.0",
|
|
46
|
+
"@emotion/react": "11.11.4",
|
|
47
|
+
"prettier": "3.3.2"
|
|
48
|
+
}
|
|
49
|
+
}
|