-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 836 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 836 Bytes
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
{
"name": "@tjh-dev/fathom",
"version": "0.4.0",
"main": "build/index.js",
"files": [
"build/*"
],
"scripts": {
"build": "tsc",
"format": "prettier --write package.json tsconfig.json src/"
},
"author": "tjh-dev",
"devDependencies": {
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"esbuild": "^0.24",
"eslint": "^9.19",
"prettier": "^3.0.0",
"typescript": "^5"
},
"dependencies": {
"react": "^19"
},
"prettier": {
"bracketSameLine": true,
"useTabs": true,
"trailingComma": "es5"
},
"types": "./build/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/tjh-dev/fathom.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/tjh-dev/fathom/issues"
},
"homepage": "https://github.com/tjh-dev/fathom#readme",
"description": ""
}