-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.82 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.82 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
{
"name": "@iota/isc-sdk",
"author": "IOTA Foundation <[email protected]>",
"version": "0.2.6",
"description": "ISC SDK for interacting with IOTA Smart Contracts.",
"repository": "https://github.com/iotaledger/ts-packages",
"type": "commonjs",
"license": "Apache-2.0",
"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"
}
},
"scripts": {
"clean": "rm -rf tsconfig.tsbuildinfo ./dist",
"build": "build-package",
"eslint:check": "eslint --max-warnings=0 \"./src/**/*.{js,ts}\" \"./tests/**/*.{js,ts}\"",
"eslint:fix": "pnpm eslint:check --fix",
"prettier:check": "prettier -c --ignore-unknown --ignore-path=.prettierignore .",
"prettier:fix": "prettier -w --ignore-unknown --ignore-path=.prettierignore .",
"lint": "pnpm eslint:check && pnpm prettier:check",
"lint:fix": "pnpm eslint:fix && pnpm prettier:fix",
"run:example": "tsx",
"test": "vitest"
},
"dependencies": {
"@iota/bcs": "workspace:*",
"@iota/dapp-kit": "workspace:*",
"@iota/iota-sdk": "workspace:*",
"@noble/hashes": "^1.4.0"
},
"devDependencies": {
"@iota/build-scripts": "workspace:*",
"@types/node": "^24.0.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.5",
"tsx": "^4.8.1",
"typescript": "^5.5.3",
"vitest": "^4.1.0",
"zod": "^3.25.76"
},
"lint-staged": {
"src/**/*.{ts,js,mjs}": [
"eslint --fix",
"prettier --write"
],
"examples/**/*.{ts,js,mjs}": [
"eslint --fix",
"prettier --write"
]
}
}