@siemens/ix-icons 3.0.0-alpha.0 → 3.0.0-alpha.1
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/icons/package.json +1 -1
- package/package.json +36 -6
package/icons/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@siemens/ix-icons",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Siemens iX icon library",
|
|
6
6
|
"author": "Siemens AG",
|
|
@@ -16,11 +16,9 @@
|
|
|
16
16
|
"pnpm": ">=9.x.x",
|
|
17
17
|
"node": ">=18.x.x"
|
|
18
18
|
},
|
|
19
|
+
"type": "module",
|
|
19
20
|
"main": "dist/index.cjs.js",
|
|
20
21
|
"module": "dist/index.js",
|
|
21
|
-
"es2015": "dist/esm/index.mjs",
|
|
22
|
-
"es2017": "dist/esm/index.mjs",
|
|
23
|
-
"jsnext:main": "dist/esm/index.js",
|
|
24
22
|
"types": "dist/types/index.d.ts",
|
|
25
23
|
"collection": "dist/collection/collection-manifest.json",
|
|
26
24
|
"collection:main": "dist/collection/index.js",
|
|
@@ -32,6 +30,38 @@
|
|
|
32
30
|
"icons/",
|
|
33
31
|
"svg/"
|
|
34
32
|
],
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/types/index.d.ts",
|
|
36
|
+
"import": "./dist/esm/index.js",
|
|
37
|
+
"require": "./dist/cjs/index.js",
|
|
38
|
+
"default": "./dist/esm/index.js"
|
|
39
|
+
},
|
|
40
|
+
"./loader": {
|
|
41
|
+
"types": "./loader/index.d.ts",
|
|
42
|
+
"import": "./loader/index.js",
|
|
43
|
+
"require": "./loader/index.cjs.js",
|
|
44
|
+
"default": "./loader/index.js"
|
|
45
|
+
},
|
|
46
|
+
"./components/*.js": {
|
|
47
|
+
"types": "./dist/types/components/*.d.ts",
|
|
48
|
+
"import": "./components/*.js"
|
|
49
|
+
},
|
|
50
|
+
"./components": {
|
|
51
|
+
"types": "./dist/types/components.d.ts",
|
|
52
|
+
"import": "./dist/esm/index.js",
|
|
53
|
+
"require": "./dist/cjs/index.js",
|
|
54
|
+
"default": "./dist/esm/index.js"
|
|
55
|
+
},
|
|
56
|
+
"./icons": {
|
|
57
|
+
"types": "./icons/index.d.ts",
|
|
58
|
+
"import": "./icons/index.mjs",
|
|
59
|
+
"require": "./icons/index.js",
|
|
60
|
+
"default": "./icons/index.mjs"
|
|
61
|
+
},
|
|
62
|
+
"./svg/*.svg": "./svg/*.svg",
|
|
63
|
+
"./dist/sample.json": "./dist/sample.json"
|
|
64
|
+
},
|
|
35
65
|
"dependencies": {
|
|
36
66
|
"@stencil/core": "^4.27.2"
|
|
37
67
|
},
|
|
@@ -54,11 +84,11 @@
|
|
|
54
84
|
"puppeteer": "^19.5.2",
|
|
55
85
|
"rimraf": "^5.0.0",
|
|
56
86
|
"svgo": "^3.0.2",
|
|
57
|
-
"
|
|
87
|
+
"tsx": "^4.19.3",
|
|
58
88
|
"typescript": "^4.9.5"
|
|
59
89
|
},
|
|
60
90
|
"scripts": {
|
|
61
|
-
"build:js-icons": "
|
|
91
|
+
"build:js-icons": "tsx --tsconfig ./scripts/tsconfig.json ./scripts/build-icons.ts",
|
|
62
92
|
"build": "rimraf build-dist svg && pnpm build:js-icons && stencil build",
|
|
63
93
|
"start": "rimraf build-dist svg && pnpm build:js-icons && stencil build --dev --watch --serve",
|
|
64
94
|
"test": "stencil test --spec",
|