-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@vznh/substack",
"version": "0.3.0",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vznh/substack.git"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "node scripts/clean-dist.mjs && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:examples": "tsc -p tsconfig.examples.json",
"test": "npm run build && npm run typecheck:examples && node --test tests/*.test.mjs",
"test:bun": "npm run build && bun test tests/*.test.mjs",
"test:consumer": "npm run build && node scripts/consumer-smoke.mjs",
"smoke:live": "node scripts/live-smoke.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"fetch-cookie": "^3.2.0",
"tough-cookie": "^6.0.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "22.20.1",
"typescript": "5.9.3"
}
}