@wxn0brp/nya-dock 0.0.1 → 0.0.2

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +36 -39
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Nyadock
1
+ # NyaDock
2
2
 
3
3
  A dock panel component library. Currently in early development stage.
4
4
 
@@ -14,12 +14,12 @@ A dock panel component library. Currently in early development stage.
14
14
 
15
15
  ## Demo
16
16
 
17
- [https://wxn0brp.github.io/Nyadock/demo](https://wxn0brp.github.io/Nyadock/demo)
17
+ [https://wxn0brp.github.io/NyaDock/demo](https://wxn0brp.github.io/NyaDock/demo)
18
18
 
19
19
  ## Installation
20
20
 
21
21
  ```bash
22
- yarn add github:wxn0brP/Nyadock#dist
22
+ npm i @wxn0brp/nya-dock
23
23
  ```
24
24
 
25
25
  ## Usage
package/package.json CHANGED
@@ -1,41 +1,38 @@
1
1
  {
2
- "name": "@wxn0brp/nya-dock",
3
- "version": "0.0.1",
4
- "main": "dist/index.js",
5
- "types": "dist/index.d.ts",
6
- "description": "",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/wxn0brP/Nyadock.git"
10
- },
11
- "homepage": "https://github.com/wxn0brP/Nyadock",
12
- "author": "wxn0brP",
13
- "license": "MIT",
14
- "type": "module",
15
- "scripts": {
16
- "build": "tsc && tsc-alias && sass src:dist"
17
- },
18
- "devDependencies": {
19
- "sass": "*",
20
- "tsc-alias": "*",
21
- "typescript": "*"
22
- },
23
- "files": [
24
- "dist"
25
- ],
26
- "exports": {
27
- ".": {
28
- "types": "./dist/index.d.ts",
29
- "import": "./dist/index.js",
30
- "default": "./dist/index.js"
31
- },
32
- "./*": {
33
- "types": "./dist/*.d.ts",
34
- "import": "./dist/*.js",
35
- "default": "./dist/*.js"
36
- }
37
- },
38
- "dependencies": {
39
- "@wxn0brp/flanker-ui": "^0.4.3"
40
- }
2
+ "name": "@wxn0brp/nya-dock",
3
+ "version": "0.0.2",
4
+ "main": "dist/index.js",
5
+ "types": "dist/index.d.ts",
6
+ "description": "",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/wxn0brP/NyaDock.git"
10
+ },
11
+ "homepage": "https://github.com/wxn0brP/NyaDock",
12
+ "author": "wxn0brP",
13
+ "license": "MIT",
14
+ "type": "module",
15
+ "devDependencies": {
16
+ "sass": "*",
17
+ "tsc-alias": "*",
18
+ "typescript": "*"
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "exports": {
24
+ ".": {
25
+ "types": "./dist/index.d.ts",
26
+ "import": "./dist/index.js",
27
+ "default": "./dist/index.js"
28
+ },
29
+ "./*": {
30
+ "types": "./dist/*.d.ts",
31
+ "import": "./dist/*.js",
32
+ "default": "./dist/*.js"
33
+ }
34
+ },
35
+ "dependencies": {
36
+ "@wxn0brp/flanker-ui": "^0.4.3"
37
+ }
41
38
  }