-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.8 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.8 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
{
"name": "@trustless-work/escrow",
"version": "3.0.5",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./types": {
"import": "./dist/types/index.mjs",
"require": "./dist/types/index.cjs",
"types": "./dist/types/index.d.ts"
},
"./hooks": {
"import": "./dist/hooks/index.mjs",
"require": "./dist/hooks/index.cjs",
"types": "./dist/hooks/index.d.ts"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup src/index.ts src/types/index.ts src/hooks/index.ts --format esm,cjs --dts",
"build:watch": "tsup src/index.ts src/types/index.ts src/hooks/index.ts --format esm,cjs --dts --watch",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Trustless-Work/react-library-trustless-work.git"
},
"keywords": [
"react",
"hooks",
"trustless",
"escrow",
"api"
],
"author": "Trustless Work",
"license": "MIT",
"type": "commonjs",
"description": "",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=18.0.0 <20.0.0",
"react-dom": ">=18.0.0 <20.0.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.20",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"eslint": "^9.27.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.3.4",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.9.0"
}
}