@webstudio-is/css-data 0.18.0 → 0.18.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.
Files changed (1) hide show
  1. package/package.json +14 -15
package/package.json CHANGED
@@ -1,29 +1,20 @@
1
1
  {
2
2
  "name": "@webstudio-is/css-data",
3
- "version": "0.18.0",
3
+ "version": "0.18.1",
4
4
  "description": "CSS Data",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",
7
7
  "type": "module",
8
- "scripts": {
9
- "typecheck": "tsc --noEmit",
10
- "checks": "yarn typecheck && yarn lint",
11
- "dev": "build-package --watch",
12
- "build": "build-package",
13
- "build:mdn-data": "tsx ./bin/mdn-data.ts ./src/__generated__ && prettier --write \"./src/__generated__/**/*.ts\"",
14
- "lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
15
- "publish-to-npm": "bash ../../bin/publish-to-npm.sh"
16
- },
17
8
  "dependencies": {},
18
9
  "devDependencies": {
19
10
  "@types/css-tree": "^2.0.0",
20
- "@webstudio-is/scripts": "*",
21
- "@webstudio-is/tsconfig": "*",
22
11
  "camelcase": "^6.3.0",
23
12
  "css-tree": "^2.3.0",
24
13
  "mdn-data": "2.0.23",
25
14
  "typescript": "4.7.4",
26
- "zod": "^3.19.1"
15
+ "zod": "^3.19.1",
16
+ "@webstudio-is/scripts": "^0.0.0",
17
+ "@webstudio-is/tsconfig": "^1.0.1"
27
18
  },
28
19
  "peerDependencies": {
29
20
  "zod": "^3.19.1"
@@ -40,5 +31,13 @@
40
31
  ],
41
32
  "license": "MIT",
42
33
  "private": false,
43
- "sideEffects": false
44
- }
34
+ "sideEffects": false,
35
+ "scripts": {
36
+ "typecheck": "tsc --noEmit",
37
+ "checks": "pnpm typecheck && pnpm lint",
38
+ "dev": "build-package --watch",
39
+ "build": "build-package",
40
+ "build:mdn-data": "tsx ./bin/mdn-data.ts ./src/__generated__ && prettier --write \"./src/__generated__/**/*.ts\"",
41
+ "lint": "eslint ./src --ext .ts,.tsx --max-warnings 0"
42
+ }
43
+ }