-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@initia/builder.js",
"version": "0.2.7",
"description": "The JavaScript Move Builder for Initia",
"license": "MIT",
"author": "Initia Foundation",
"keywords": [
"cryptocurrency",
"blockchain",
"smart-contracts",
"altcoin",
"altcoins",
"wallet",
"move"
],
"repository": {
"type": "git",
"url": "https://github.com/initia-labs/builder.js"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"library"
],
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "npx eslint . --fix",
"build": "tsc --build",
"test": "jest --no-cache --testPathIgnorePatterns test.spec.ts",
"test-test": "jest test.spec.ts",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.7.18",
"@types/ref-struct-di": "^1.1.9",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"buffer": "^6.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.0",
"jest": "^29.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.1.1",
"process": "^0.11.10",
"ts-jest": "^29.2.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typedoc": "^0.26.7",
"typescript": "^5.5.3"
},
"dependencies": {
"@eleccookie/ffi-napi": "^0.0.1",
"@eleccookie/ref-napi": "^0.0.2",
"@mysten/bcs": "^1.1.0",
"ref-struct-di": "^1.1.1",
"typescript-eslint": "^7.17.0"
},
"lint-staged": {
"src/**/*.ts": "npx eslint . --fix",
"*.toml": "skip"
}
}