-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.44 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.44 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@canvasflow/feed",
"description": "This is canvasflow utility for processing feeds",
"version": "1.5.32",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"keywords": [
"rss",
"atom",
"feed"
],
"repository": {
"type": "git",
"url": "https://github.com/canvasflow/feed.git"
},
"bugs": {
"url": "https://github.com/canvasflow/feed/issues"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "npm run build && npm run --dry-run",
"test": "vitest",
"test:debug": "vitest --test-timeout=0 --no-file-parallelism",
"test:run": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"lint": "eslint . --ext .ts",
"lint:watch": "watch-eslint",
"coverage": "vitest --coverage",
"coverage:ui": "vitest --coverage --ui",
"commit": "cz",
"prepare": "husky install",
"format": "prettier --write ."
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableScopeLowerCase": false,
"disableSubjectLowerCase": false,
"maxHeaderWidth": 100,
"maxLineWidth": 100
}
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.27.0",
"@types/luxon": "^3.6.2",
"@types/node": "^22.15.21",
"@types/sanitize-html": "^2.16.0",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"cz-conventional-changelog": "^3.0.1",
"cz-git": "^1.11.1",
"globals": "^16.2.0",
"husky": "^8.0.3",
"lint-staged": "^16.1.0",
"prettier": "3.5.3",
"typescript": "~5.8.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.17",
"watch-eslint": "^1.1.0"
},
"engines": {
"node": ">=20.19.0"
},
"volta": {
"node": "20.19.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"cheerio": "^1.1.2",
"fast-xml-parser": "^5.2.3",
"himalaya": "^1.1.1",
"linkedom": "^0.18.12",
"luxon": "^3.6.1",
"sanitize-html": "^2.17.0",
"zod": "^3.25.67"
}
}