@webstudio-is/http-client 0.18.0 → 0.20.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/package.json +15 -16
package/package.json
CHANGED
|
@@ -1,28 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webstudio-is/http-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "Webstudio HTTP Client",
|
|
5
5
|
"author": "Webstudio <github@webstudio.is>",
|
|
6
6
|
"homepage": "https://webstudio.is",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"dev": "tsup --watch",
|
|
9
|
-
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
10
|
-
"build": "rm -fr lib tsconfig.tsbuildinfo && tsc",
|
|
11
|
-
"typecheck": "tsc --noEmit",
|
|
12
|
-
"lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
|
|
13
|
-
"checks": "yarn typecheck && yarn lint",
|
|
14
|
-
"publish-to-npm": "bash ../../bin/publish-to-npm.sh"
|
|
15
|
-
},
|
|
16
7
|
"devDependencies": {
|
|
17
8
|
"@jest/globals": "^29.3.1",
|
|
18
9
|
"@types/isomorphic-fetch": "^0.0.36",
|
|
19
|
-
"@webstudio-is/jest-config": "*",
|
|
20
|
-
"@webstudio-is/prisma-client": "*",
|
|
21
|
-
"@webstudio-is/project": "*",
|
|
22
|
-
"@webstudio-is/tsconfig": "*",
|
|
23
10
|
"jest": "^29.3.1",
|
|
24
11
|
"tsup": "^6.1.3",
|
|
25
|
-
"typescript": "4.7.4"
|
|
12
|
+
"typescript": "4.7.4",
|
|
13
|
+
"@webstudio-is/jest-config": "^1.0.2",
|
|
14
|
+
"@webstudio-is/prisma-client": "^0.20.0",
|
|
15
|
+
"@webstudio-is/project": "^0.20.0",
|
|
16
|
+
"@webstudio-is/tsconfig": "^1.0.1"
|
|
26
17
|
},
|
|
27
18
|
"peerDependencies": {},
|
|
28
19
|
"dependencies": {
|
|
@@ -44,5 +35,13 @@
|
|
|
44
35
|
],
|
|
45
36
|
"format": "cjs",
|
|
46
37
|
"outDir": "lib"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"dev": "tsup --watch",
|
|
41
|
+
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
42
|
+
"build": "rm -fr lib tsconfig.tsbuildinfo && tsc",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"lint": "eslint ./src --ext .ts,.tsx --max-warnings 0",
|
|
45
|
+
"checks": "pnpm typecheck && pnpm lint"
|
|
47
46
|
}
|
|
48
|
-
}
|
|
47
|
+
}
|