-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.36 KB
/
package.json
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
{
"version": "1.0.5",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"docs": "typedoc",
"generate:guards": "ts-auto-guard src/index.ts --export-all"
},
"dependencies": {
"@types/dompurify": "^2.4.0",
"dompurify": "^2.4.3",
"swr": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@au5ton/use-atom-feed",
"description": "React Hook for reading Atom feeds.",
"author": "Austin Jackson",
"module": "dist/use-atom-feed.esm.js",
"devDependencies": {
"husky": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-auto-guard": "1.0.0-alpha.22",
"tsdx": "^0.14.1",
"tslib": "^2.2.0",
"typedoc": "^0.20.36",
"typescript": "^3.9.9"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/au5ton/use-atom-feed.git"
},
"bugs": {
"url": "https://github.com/au5ton/use-atom-feed/issues"
},
"homepage": "https://github.com/au5ton/use-atom-feed#readme"
}