@synstack/web 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +10 -8
package/package.json
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
"access": "public"
|
6
6
|
},
|
7
7
|
"packageManager": "yarn@4.4.0",
|
8
|
-
"version": "1.0.
|
8
|
+
"version": "1.0.1",
|
9
9
|
"description": "Web scraping utilities",
|
10
10
|
"keywords": [
|
11
11
|
"web",
|
@@ -26,14 +26,13 @@
|
|
26
26
|
},
|
27
27
|
"license": "Apache-2.0",
|
28
28
|
"scripts": {
|
29
|
-
"publish": "yarn npm publish --access public",
|
30
|
-
"prepublish": "yarn test && yarn build",
|
31
29
|
"build": "tsup",
|
32
30
|
"build:watch": "tsup --watch",
|
33
31
|
"test:types": "tsc --noEmit",
|
34
32
|
"test:unit": "node --import tsx --test src/**/*.test.ts",
|
35
33
|
"test:unit:watch": "node --import tsx --watch --test src/**/*.test.ts",
|
36
|
-
"test": "yarn test:types && yarn test:unit"
|
34
|
+
"test": "yarn test:types && yarn test:unit",
|
35
|
+
"prepare": "yarn test && yarn build"
|
37
36
|
},
|
38
37
|
"exports": {
|
39
38
|
".": {
|
@@ -49,19 +48,22 @@
|
|
49
48
|
},
|
50
49
|
"dependencies": {
|
51
50
|
"@mozilla/readability": "^0.5.0",
|
52
|
-
"linkedom": "^0.18.5"
|
53
|
-
"zod": "^3.23.8"
|
51
|
+
"linkedom": "^0.18.5"
|
54
52
|
},
|
55
53
|
"devDependencies": {
|
56
54
|
"@types/node": "^22.7.0",
|
57
55
|
"tsup": "^8.3.0",
|
58
56
|
"tsx": "^4.19.1",
|
59
|
-
"typescript": "^5.6.2"
|
57
|
+
"typescript": "^5.6.2",
|
58
|
+
"zod": "^3.23.8"
|
59
|
+
},
|
60
|
+
"peerDependencies": {
|
61
|
+
"zod": "*"
|
60
62
|
},
|
61
63
|
"files": [
|
62
64
|
"src/**/*.ts",
|
63
65
|
"!src/**/*.test.ts",
|
64
66
|
"dist/**/*"
|
65
67
|
],
|
66
|
-
"gitHead": "
|
68
|
+
"gitHead": "c743297f6665c317dca929c1ab9dc7e756076321"
|
67
69
|
}
|