@ws-ui/icons 0.2.2 → 1.1.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 +4 -22
- package/dist/assets/4DIcons.d.ts +696 -678
- package/dist/assets/IconType.d.ts +0 -1
- package/dist/assets/index.d.ts +2 -1
- package/dist/index.cjs.js +1 -29
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +985 -1605
- package/dist/index.es.js.map +1 -1
- package/dist/package.json +41 -0
- package/package.json +9 -15
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ws-ui/icons",
|
|
3
|
+
"main": "./dist/index.cjs.js",
|
|
4
|
+
"module": "./dist/index.es.js",
|
|
5
|
+
"types": "./dist/index.d.ts",
|
|
6
|
+
"version": "1.1.0",
|
|
7
|
+
"private": false,
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"start-dev": "nodemon --watch src --ext ts,tsx,js,jsx,css --exec \"npm run build && npm run --prefix ../.. postbuild -- --packages=icons\"",
|
|
13
|
+
"prepack": "npm run build",
|
|
14
|
+
"build": "tsc && vite build",
|
|
15
|
+
"lint:icons": "prettier src/assets/4DIcons.tsx --write",
|
|
16
|
+
"download:icons": "./scripts/download-icons.sh",
|
|
17
|
+
"postdownload:icons": "npm run lint:icons"
|
|
18
|
+
},
|
|
19
|
+
"peerDependencies": {
|
|
20
|
+
"react": ">= 17",
|
|
21
|
+
"react-dom": ">= 17"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@types/react": "^17.0.24",
|
|
25
|
+
"@types/react-dom": "^17.0.5",
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
27
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
28
|
+
"@vitejs/plugin-react": "^4.0.3",
|
|
29
|
+
"dotenv": "^16.0.3",
|
|
30
|
+
"eslint": "^8.45.0",
|
|
31
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
32
|
+
"eslint-plugin-react-refresh": "^0.4.3",
|
|
33
|
+
"prettier": "^3.2.5",
|
|
34
|
+
"tailwindcss": "^3.3.3",
|
|
35
|
+
"typescript": "^5.0.2",
|
|
36
|
+
"vite": "^5.0.0",
|
|
37
|
+
"vite-plugin-dts": "^3.5.4",
|
|
38
|
+
"vite-plugin-static-copy": "^0.17.0",
|
|
39
|
+
"vite-plugin-svgr": "^4.0.0"
|
|
40
|
+
}
|
|
41
|
+
}
|
package/package.json
CHANGED
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ws-ui/icons",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.2.2",
|
|
5
|
-
"type": "module",
|
|
6
3
|
"main": "./dist/index.cjs.js",
|
|
7
4
|
"module": "./dist/index.es.js",
|
|
8
5
|
"types": "./dist/index.d.ts",
|
|
6
|
+
"version": "1.1.0",
|
|
7
|
+
"private": false,
|
|
9
8
|
"files": [
|
|
10
9
|
"dist"
|
|
11
10
|
],
|
|
12
11
|
"scripts": {
|
|
13
|
-
"dev": "
|
|
14
|
-
"format": "prettier --write .",
|
|
12
|
+
"start-dev": "nodemon --watch src --ext ts,tsx,js,jsx,css --exec \"npm run build && npm run --prefix ../.. postbuild -- --packages=icons\"",
|
|
15
13
|
"prepack": "npm run build",
|
|
16
14
|
"build": "tsc && vite build",
|
|
17
|
-
"postbuild": "yalc push --changed",
|
|
18
15
|
"lint:icons": "prettier src/assets/4DIcons.tsx --write",
|
|
19
|
-
"download:icons": "./scripts/download-icons.sh
|
|
20
|
-
"postdownload:icons": "npm run lint:icons"
|
|
21
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
22
|
-
"preview": "vite preview"
|
|
16
|
+
"download:icons": "./scripts/download-icons.sh",
|
|
17
|
+
"postdownload:icons": "npm run lint:icons"
|
|
23
18
|
},
|
|
24
19
|
"peerDependencies": {
|
|
25
20
|
"react": ">= 17",
|
|
@@ -33,15 +28,14 @@
|
|
|
33
28
|
"@vitejs/plugin-react": "^4.0.3",
|
|
34
29
|
"dotenv": "^16.0.3",
|
|
35
30
|
"eslint": "^8.45.0",
|
|
36
|
-
"eslint-plugin-react-hooks": "^
|
|
31
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
37
32
|
"eslint-plugin-react-refresh": "^0.4.3",
|
|
38
|
-
"prettier": "^3.
|
|
33
|
+
"prettier": "^3.2.5",
|
|
39
34
|
"tailwindcss": "^3.3.3",
|
|
40
35
|
"typescript": "^5.0.2",
|
|
41
|
-
"vite": "^
|
|
36
|
+
"vite": "^5.0.0",
|
|
42
37
|
"vite-plugin-dts": "^3.5.4",
|
|
43
38
|
"vite-plugin-static-copy": "^0.17.0",
|
|
44
|
-
"vite-plugin-svgr": "^4.0.0"
|
|
45
|
-
"yalc": "^1.0.0-pre.53"
|
|
39
|
+
"vite-plugin-svgr": "^4.0.0"
|
|
46
40
|
}
|
|
47
41
|
}
|