-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
{
"name": "@neonevm/solana-sign",
"description": "Javascript Library for Execute Neon transactions with Solana's signature",
"version": "0.1.7",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "cd packages/core && yarn build",
"build:all": "yarn workspaces run build",
"test": "cd packages/core && jest -i",
"build:docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neonlabsorg/neon-solana-signer.git"
},
"keywords": [
"neonlabs",
"neon-evm",
"solana"
],
"dependencies": {
"typescript": "~5.6.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "20.11.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"typedoc": "0.27.0",
"dotenv": "^16.4.5",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2"
},
"volta": {
"node": "20.18.1"
}
}