-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.79 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.79 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
{
"name": "@toruslabs/torus-embed",
"version": "4.1.3",
"description": "Embed script for Torus",
"unpkg": "dist/torus.umd.min.js",
"jsdelivr": "dist/torus.umd.min.js",
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
"types": "dist/lib.cjs/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/torus-embed.git"
},
"scripts": {
"start": "torus-scripts start --name=torus",
"build": "torus-scripts build --name=torus",
"release": "torus-scripts release",
"prepack": "npm run build",
"lint:ts": "eslint --fix 'src/**/*.ts'",
"prepare": "husky"
},
"peerDependencies": {
"@babel/runtime": "7.x"
},
"dependencies": {
"@web3auth/ws-embed": "^5.0.17"
},
"devDependencies": {
"@babel/runtime": "^7.28.2",
"@rollup/plugin-replace": "^6.0.2",
"@toruslabs/config": "^3.1.0",
"@toruslabs/eslint-config-typescript": "^4.1.4",
"@toruslabs/torus-scripts": "^7.1.6",
"@types/node": "^22",
"eslint": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"webpack": "^5.101.0"
},
"mocha": {
"timeout": 0
},
"keywords": [
"torus",
"wallet",
"ERC20",
"Ethereum",
"embed",
"login",
"OAuth",
"crypto"
],
"author": "Torus Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/torusresearch/torus-embed/issues"
},
"homepage": "https://github.com/torusresearch/torus-embed#readme",
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json, md}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.x",
"npm": ">=9.x"
}
}