@ws-ui/icons 0.2.1 → 0.2.3

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.
@@ -0,0 +1,21 @@
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": "0.2.3",
7
+ "private": false,
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "prepack": "npm run build",
13
+ "build": "tsc && vite build",
14
+ "download:icons": "./scripts/download-icons.sh && npm run format",
15
+ "windows:download:icons": "scripts\\download-icons.bat && npm run format",
16
+ "postdownload:icons": "npm run lint:icons",
17
+ "postwindows:download:icons": "npm run lint:icons",
18
+ "format": "prettier --write .",
19
+ "lint:icons": "prettier src/assets/4DIcons.tsx --write"
20
+ }
21
+ }
package/package.json CHANGED
@@ -1,47 +1,21 @@
1
1
  {
2
2
  "name": "@ws-ui/icons",
3
- "private": false,
4
- "version": "0.2.1",
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": "0.2.3",
7
+ "private": false,
9
8
  "files": [
10
9
  "dist"
11
10
  ],
12
11
  "scripts": {
13
- "dev": "vite",
14
- "format": "prettier --write .",
15
12
  "prepack": "npm run build",
16
13
  "build": "tsc && vite build",
17
- "postbuild": "yalc push --changed",
18
- "lint:icons": "prettier src/assets/4DIcons.tsx --write",
19
14
  "download:icons": "./scripts/download-icons.sh && npm run format",
15
+ "windows:download:icons": "scripts\\download-icons.bat && npm run format",
20
16
  "postdownload:icons": "npm run lint:icons",
21
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
22
- "preview": "vite preview"
23
- },
24
- "peerDependencies": {
25
- "react": ">= 17",
26
- "react-dom": ">= 17"
27
- },
28
- "devDependencies": {
29
- "@types/react": "^17.0.24",
30
- "@types/react-dom": "^17.0.5",
31
- "@typescript-eslint/eslint-plugin": "^6.0.0",
32
- "@typescript-eslint/parser": "^6.0.0",
33
- "@vitejs/plugin-react": "^4.0.3",
34
- "dotenv": "^16.0.3",
35
- "eslint": "^8.45.0",
36
- "eslint-plugin-react-hooks": "^4.6.0",
37
- "eslint-plugin-react-refresh": "^0.4.3",
38
- "prettier": "^3.0.3",
39
- "tailwindcss": "^3.3.3",
40
- "typescript": "^5.0.2",
41
- "vite": "^4.4.5",
42
- "vite-plugin-dts": "^3.5.4",
43
- "vite-plugin-static-copy": "^0.17.0",
44
- "vite-plugin-svgr": "^4.0.0",
45
- "yalc": "^1.0.0-pre.53"
17
+ "postwindows:download:icons": "npm run lint:icons",
18
+ "format": "prettier --write .",
19
+ "lint:icons": "prettier src/assets/4DIcons.tsx --write"
46
20
  }
47
21
  }