-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 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
50
51
{
"name": "substack-feed-api",
"version": "2.0.3",
"type": "module",
"files": [
"dist",
"index.d.ts"
],
"repository": {
"url": "https://github.com/rohit1901/substack-feed-api"
},
"main": "./dist/substackFeedApi.umd.cjs",
"module": "./dist/substackFeedApi.js",
"types": "./index.d.ts",
"exports": {
"types": "./index.d.ts",
"import": "./dist/substackFeedApi.js",
"require": "./dist/substackFeedApi.umd.cjs"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint **/*.ts",
"format": "prettier --write **/*.ts",
"test": "jest --runInBand",
"pack:test": "npm run build && npm pack",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/jest": "^29.5.14",
"@types/xml2js": "^0.4.14",
"eslint": "^9.27.0",
"events": "^3.3.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5",
"xml2js": "^0.6.2"
},
"dependencies": {
"cheerio": "^1.2.0",
"node-fetch": "^3.3.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
}
}