-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.73 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.73 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
{
"name": "@polkadot-agent-kit/common",
"version": "2.1.5",
"description": "SDK common code for Polkadot Agent Kit for developers",
"repository": {
"type": "git",
"url": "git+https://github.com/elasticlabs-org/polkadot-agent-kit.git",
"directory": "packages/common"
},
"license": "MIT",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist .turbo node_modules",
"compile": "tsc --noEmit",
"build": "rollup -c",
"lint:check": "eslint src",
"lint": "eslint --fix src",
"format:check": "prettier --check src",
"format:write": "prettier --write src",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:watch": "vitest"
},
"dependencies": {
"polkadot-api": "^1.23.1",
"@polkadot-labs/hdkd": "^0.0.13",
"@polkadot-labs/hdkd-helpers": "^0.0.13",
"@subsquid/ss58": "^2.0.2"
},
"devDependencies": {
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@babel/preset-env": "^7.26.9",
"@codecov/rollup-plugin": "^1.9.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.12.0",
"@types/sinon": "^17.0.4",
"@vitest/coverage-v8": "^3.0.9",
"dotenv": "^16.4.7",
"prettier": "^3.5.3",
"rollup": "^4.37.0",
"rollup-plugin-dts": "^6.2.1",
"sinon": "^20.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.0.4"
}
}