gdsi 3.0.6 → 3.0.8

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 (1) hide show
  1. package/package.json +32 -34
package/package.json CHANGED
@@ -1,28 +1,41 @@
1
1
  {
2
2
  "name": "gdsi",
3
- "type": "module",
4
- "version": "3.0.6",
3
+ "version": "3.0.8",
5
4
  "description": "Geist design system icons maintained by the community.",
6
- "author": "Libon <bon.li@outlook.com>",
7
- "license": "MIT",
5
+ "keywords": [
6
+ "geist",
7
+ "geist design system",
8
+ "icons",
9
+ "react",
10
+ "svg",
11
+ "vanilla",
12
+ "vue"
13
+ ],
8
14
  "homepage": "https://github.com/libondev/gdsi#readme",
15
+ "bugs": {
16
+ "url": "https://github.com/libondev/gdsi/issues"
17
+ },
18
+ "license": "MIT",
19
+ "author": "Libon <bon.li@outlook.com>",
9
20
  "repository": {
10
21
  "type": "git",
11
22
  "url": "git+https://github.com/libondev/gdsi.git"
12
23
  },
13
- "bugs": {
14
- "url": "https://github.com/libondev/gdsi/issues"
15
- },
16
- "keywords": [
17
- "geist design system",
18
- "geist",
19
- "icons",
20
- "svg",
21
- "vue",
22
- "react",
23
- "vanilla"
24
+ "files": [
25
+ "dist"
24
26
  ],
27
+ "type": "module",
25
28
  "sideEffects": false,
29
+ "main": "dist/svg.js",
30
+ "types": "./dist/svg.d.ts",
31
+ "typesVersions": {
32
+ "*": {
33
+ "*": [
34
+ "./dist/*",
35
+ "./*"
36
+ ]
37
+ }
38
+ },
26
39
  "exports": {
27
40
  "./svg": {
28
41
  "types": "./dist/svg.d.ts",
@@ -42,23 +55,10 @@
42
55
  },
43
56
  "./*": "./dist/*"
44
57
  },
45
- "main": "dist/svg.js",
46
- "types": "./dist/svg.d.ts",
47
- "typesVersions": {
48
- "*": {
49
- "*": [
50
- "./dist/*",
51
- "./*"
52
- ]
53
- }
54
- },
55
- "files": [
56
- "dist"
57
- ],
58
58
  "dependencies": {
59
- "@gdsicon/svg": "1.0.6",
60
- "@gdsicon/vue": "1.0.6",
61
- "@gdsicon/react": "1.0.6"
59
+ "@gdsicon/react": "1.0.8",
60
+ "@gdsicon/vue": "1.0.8",
61
+ "@gdsicon/svg": "1.0.8"
62
62
  },
63
63
  "devDependencies": {
64
64
  "@antfu/eslint-config": "^3.16.0",
@@ -82,9 +82,7 @@
82
82
  "build:svg": "pnpm --filter @gdsicon/svg build",
83
83
  "build:vue": "pnpm --filter @gdsicon/vue build",
84
84
  "build:react": "pnpm --filter @gdsicon/react build",
85
- "publish:svg": "pnpm --filter @gdsicon/svg publish",
86
- "publish:vue": "pnpm --filter @gdsicon/vue publish",
87
- "publish:react": "pnpm --filter @gdsicon/react publish",
85
+ "publish:pkg": "pnpm -r \"./packages/*\" publish",
88
86
  "lint": "eslint .",
89
87
  "lint:fix": "eslint . --fix"
90
88
  }