@jakubmazanec/ui 0.1.0-unstable.5e3616d
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 +40 -0
- package/build/main.d.ts +1 -0
- package/build/main.js +3 -0
- package/build/main.js.map +7 -0
- package/package.json +48 -0
- package/source/main.ts +1 -0
package/README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!-- header -->
|
|
2
|
+
<div align="center">
|
|
3
|
+
|
|
4
|
+
# @jakubmazanec/ui
|
|
5
|
+
|
|
6
|
+
React component library.
|
|
7
|
+
|
|
8
|
+
</div>
|
|
9
|
+
<!-- header -->
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
npm install @jakubmazanec/ui
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
⚠️ This is an [ESM](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) package!
|
|
18
|
+
It cannot be required from a CommonJS module.
|
|
19
|
+
|
|
20
|
+
#### Prerequisites
|
|
21
|
+
|
|
22
|
+
- Node.js 20 or later
|
|
23
|
+
- TypeScript 5 or later
|
|
24
|
+
|
|
25
|
+
## Usage
|
|
26
|
+
|
|
27
|
+
🚧 This section is under development. Please check back later for updates.
|
|
28
|
+
|
|
29
|
+
## Documentation
|
|
30
|
+
|
|
31
|
+
See [API reference](./docs) for auto-generated documentation.
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
If you want to contribute, see [CONTRIBUTING](./CONTRIBUTING.md) for details.
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
This package is licensed under the GNU Lesser General Public License v3. See [LICENSE](./LICENSE.md)
|
|
40
|
+
for details.
|
package/build/main.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/build/main.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jakubmazanec/ui",
|
|
3
|
+
"version": "0.1.0-unstable.5e3616d",
|
|
4
|
+
"description": "React component library.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git@github.com:jakubmazanec/js-tools.git",
|
|
8
|
+
"directory": "packages/ui"
|
|
9
|
+
},
|
|
10
|
+
"license": "LGPL-3.0-only",
|
|
11
|
+
"author": "Jakub Mazanec <jakub@mazanec.dev>",
|
|
12
|
+
"sideEffects": false,
|
|
13
|
+
"type": "module",
|
|
14
|
+
"exports": "./build/main.js",
|
|
15
|
+
"files": [
|
|
16
|
+
"build",
|
|
17
|
+
"source"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "del-cli build tsconfig.tsbuildinfo && esbuild \"source/**/*\" --platform=node --target=node20.8 --outdir=build --sourcemap && tsc",
|
|
21
|
+
"clean": "del-cli coverage build *.tsbuildinfo",
|
|
22
|
+
"develop": "concurrently \"esbuild \"source/**/*\" --platform=node --target=node20.8 --outdir=build --sourcemap --watch\" \"tsc --watch\"",
|
|
23
|
+
"document": "del-cli docs && typedoc --options typedoc.config.cjs",
|
|
24
|
+
"format": "prettier . --write --ignore-unknown",
|
|
25
|
+
"lint": "eslint .",
|
|
26
|
+
"test": "del-cli coverage && vitest run --coverage --passWithNoTests",
|
|
27
|
+
"typecheck": "tsc --project tsconfig.typecheck.json"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@jakubmazanec/eslint-config": "^3.0.0",
|
|
31
|
+
"@types/node": "^20.8.5",
|
|
32
|
+
"@vitest/coverage-v8": "^1.3.1",
|
|
33
|
+
"concurrently": "^8.2.2",
|
|
34
|
+
"del-cli": "^5.1.0",
|
|
35
|
+
"esbuild": "^0.20.1",
|
|
36
|
+
"eslint": "^8.56.0",
|
|
37
|
+
"prettier": "^3.2.5",
|
|
38
|
+
"prettier-plugin-packagejson": "^2.4.12",
|
|
39
|
+
"typedoc": "^0.25.10",
|
|
40
|
+
"typedoc-plugin-markdown": "^3.17.1",
|
|
41
|
+
"typescript": "^5.3.3",
|
|
42
|
+
"vitest": "^1.3.1"
|
|
43
|
+
},
|
|
44
|
+
"packageManager": "npm@10.1.0",
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": "^20.8.0"
|
|
47
|
+
}
|
|
48
|
+
}
|
package/source/main.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|