-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.55 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
{
"name": "@iota/examples",
"author": "IOTA Foundation <info@iota.org>",
"description": "IOTA SDK Examples",
"repository": "https://github.com/iotaledger/ts-packages",
"version": "0.1.0",
"license": "Apache-2.0",
"type": "module",
"private": true,
"exports": {
"./custom-signer.js": "./dist/esm/custom-signer.js",
"./get-balance.js": "./dist/esm/get-balance.js",
"./transfer-iota.js": "./dist/esm/transfer-iota.js",
"./tx-with-graphql.js": "./dist/esm/tx-with-graphql.js"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=24"
},
"scripts": {
"example": "tsx",
"prettier:check": "prettier -c --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=../../.prettierignore --ignore-path=.prettierignore .",
"eslint:check": "eslint --max-warnings=0",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix"
},
"dependencies": {
"@iota/graphql-transport": "workspace:*",
"@iota/iota-sdk": "workspace:*",
"@noble/curves": "^1.4.2"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.8.1",
"typescript": "^5.5.3"
},
"lint-staged": {
"**/*.{ts,js,mjs}": [
"eslint --fix",
"prettier --write"
]
}
}