-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.31 KB
/
package.json
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
{
"name": "@spacemesh/sm-codec",
"version": "0.8.0",
"description": "Spacemesh Transaction Codec library",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "yarn clean:lib && tsc -p ./tsconfig.build.json",
"test": "jest",
"clean": "yarn clean:lib && yarn clean:modules",
"clean:lib": "rimraf ./lib",
"clean:modules": "rimraf ./node_modules",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"lint:prettier": "prettier --config .prettierrc 'src/**/*.ts'",
"lint:prettier:fix": "yarn prettier --write"
},
"keywords": [
"spacemesh",
"codec",
"scale"
],
"author": {
"name": "Spacemesh",
"email": "[email protected]",
"url": "https://spacemesh.io/"
},
"license": "MIT",
"devDependencies": {
"@spacemesh/address-wasm": "^0.2.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.4",
"tsc": "^2.0.4",
"type-fest": "^4.18.3",
"typescript": "^5.4.5"
},
"dependencies": {
"@noble/hashes": "^1.4.0",
"scale-ts": "^1.6.0"
}
}