-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.88 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
{
"name": "solana-program",
"version": "0.3.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"./dist"
],
"author": "Daniel Gabriele",
"description": "Higher-level client interface for interacting with on-chain Solana programs",
"repository": {
"type": "git",
"url": "https://github.com/gigaquads/solana-program"
},
"homepage": "https://github.com/gigaquads/solana-program",
"bugs": {
"url": "https://github.com/gigaquads/solana-program/issues",
"email": "dg0offset@gmail.com"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "yarn run pretty && yarn run build",
"start:example:luckyNumber": "ts-node src/examples/luckyNumber.ts",
"start-with-test-validator": "start-server-and-test 'solana-test-validator --reset --quiet' http://localhost:8899/health start",
"lint": "eslint --ext .ts src/* && prettier --check \"src/**/*.ts\"",
"lint:fix": "eslint --ext .ts src/* --fix",
"pretty": "prettier --write '{,src/**/}*.ts'"
},
"dependencies": {
"@solana/web3.js": "^1.30.2",
"b58": "^4.0.3",
"borsh": "^0.6.0",
"merge-anything": "^4.0.2",
"reflect": "^0.1.3",
"reflect-metadata": "^0.1.13",
"yaml": "^1.10.2"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/eslint": "^7.28.2",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^16.11.7",
"@types/prettier": "^2.4.1",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=14.0.0"
}
}