@webstudio-is/icons 0.17.0 → 0.19.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.
Files changed (1) hide show
  1. package/package.json +21 -24
package/package.json CHANGED
@@ -1,35 +1,21 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.17.0",
3
+ "version": "0.19.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
7
7
  "type": "module",
8
- "scripts": {
9
- "dev": "build-package --watch",
10
- "build": "build-package",
11
- "generate": "rm -fr src/__generated__ && NODE_OPTIONS='--loader=tsx' svgo-jsx svgo-jsx.config.ts",
12
- "typecheck": "tsc --noEmit",
13
- "lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
14
- "checks": "yarn typecheck && yarn lint",
15
- "storybook:run": "start-storybook -p 6006",
16
- "storybook:build": "build-storybook",
17
- "publish-to-npm": "bash ../../bin/publish-to-npm.sh"
18
- },
19
8
  "devDependencies": {
20
- "@storybook/addon-actions": "^6.5.6",
21
- "@storybook/addon-essentials": "^6.5.6",
22
- "@storybook/addon-interactions": "^6.5.12",
23
- "@storybook/addon-links": "^6.5.6",
24
- "@storybook/builder-webpack4": "^6.5.6",
25
9
  "@storybook/jest": "^0.0.10",
26
- "@storybook/manager-webpack4": "^6.5.6",
27
- "@storybook/react": "^6.5.6",
10
+ "@storybook/react": "^6.5.14",
28
11
  "@storybook/testing-library": "^0.0.13",
29
12
  "@svgo/jsx": "^0.4.2",
30
- "@webstudio-is/scripts": "*",
13
+ "@types/react": "^17.0.24",
31
14
  "tsx": "^3.9.0",
32
- "typescript": "4.7.4"
15
+ "typescript": "4.7.4",
16
+ "@webstudio-is/scripts": "^0.0.0",
17
+ "@webstudio-is/storybook-config": "^0.0.0",
18
+ "@webstudio-is/tsconfig": "^1.0.1"
33
19
  },
34
20
  "peerDependencies": {
35
21
  "react": "^17.0.2",
@@ -37,7 +23,8 @@
37
23
  },
38
24
  "dependencies": {
39
25
  "@radix-ui/react-icons": "^1.1.0",
40
- "@webstudio-is/css-vars": "*"
26
+ "react": "^17.0.2",
27
+ "@webstudio-is/css-vars": "^0.19.0"
41
28
  },
42
29
  "module": "./lib/index.js",
43
30
  "exports": {
@@ -52,5 +39,15 @@
52
39
  ],
53
40
  "license": "MIT",
54
41
  "private": false,
55
- "sideEffects": false
56
- }
42
+ "sideEffects": false,
43
+ "scripts": {
44
+ "dev": "build-package --watch",
45
+ "build": "build-package",
46
+ "generate": "rm -fr src/__generated__ && NODE_OPTIONS='--loader=tsx' svgo-jsx svgo-jsx.config.ts",
47
+ "typecheck": "tsc --noEmit",
48
+ "lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
49
+ "checks": "pnpm typecheck && pnpm lint",
50
+ "storybook:run": "start-storybook -p 6006",
51
+ "storybook:build": "build-storybook"
52
+ }
53
+ }