-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2 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": "@magic-sdk/admin",
"version": "2.8.2",
"description": "Magic Authentication Admin JavaScript SDK.",
"author": "Magic Labs <team@magic.link>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": "magiclabs/magic-admin-js",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"start": "npm run clean:build && ./scripts/start.sh",
"build": "npm run clean:build && ./scripts/build.sh",
"build-esm": "esbuild src/index.ts --bundle --outdir=dist/esm --platform=node --target=esnext",
"test": "npm run clean:test-artifacts && ./scripts/test.sh",
"lint": "eslint --fix src/**/*.ts",
"clean": "npm-run-all -s clean:*",
"clean:test-artifacts": "rimraf coverage",
"clean:build": "rimraf dist",
"clean_node_modules": "rimraf node_modules"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.1",
"@types/node-fetch": "^2.6.13",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"auto": "11.3.0",
"boxen-cli": "^4.0.0",
"esbuild": "^0.25.9",
"eslint": "^9.35.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.1.3",
"lint-staged": "^16.1.6",
"npm-run-all": "~4.1.5",
"prettier": "^3.6.2",
"rimraf": "~6.0.1",
"ts-jest": "^29.4.1",
"ts-node": "^10.2.0",
"tslint": "~5.20.1",
"typescript": "^5.9.2"
},
"dependencies": {
"ethereum-cryptography": "^3.2.0",
"ethers": "^6.15.0",
"node-fetch": "^2.7.0"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
"auto": {
"plugins": [
"npm",
"released"
]
}
}