forked from j0nnyboi/solita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.86 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@safecoin/solita",
"version": "0.19.4",
"description": "Generates SDK API from solana contract IDL.",
"main": "dist/src/solita.js",
"types": "dist/src/solita.d.ts",
"bin": {
"solita": "dist/src/cli/solita.js"
},
"scripts": {
"check:publish-ready": "yarn build && if test \"$SKIP_TESTS\" = \"1\" ; then echo \"WARN: Skipping Tests\"; else yarn test; fi",
"preversion": "yarn check:publish-ready",
"prepublishOnly": "yarn check:publish-ready",
"postpublish": "git push origin && git push origin --tags",
"build": "rimraf dist && tsc -p tsconfig.json",
"test": "yarn test:unit && yarn test:integration && yarn test:anchor:basic0 && yarn test:anchor:basic1 && yarn test:anchor:basic2 && yarn test:anchor:basic3 && yarn test:anchor:basic4",
"test:unit": "tape dist/test/*.js",
"test:integration": "tape dist/test/integration/*.js",
"test:anchor:basic0": "cd ./test/anchor-examples/basic-0 && yarn test",
"test:anchor:basic1": "cd ./test/anchor-examples/basic-1 && yarn test",
"test:anchor:basic2": "cd ./test/anchor-examples/basic-2 && yarn test",
"test:anchor:basic3": "cd ./test/anchor-examples/basic-3 && yarn test",
"test:anchor:basic4": "cd ./test/anchor-examples/basic-4 && yarn test",
"lint": "prettier -c ./src/",
"lint:fix": "prettier --write ./src",
"doc": "rimraf ./docs && typedoc",
"doc:update": "./sh/update-docs",
"doctoc": "doctoc README.md"
},
"repository": "[email protected]:metaplex-foundation/solita.git",
"author": "Thorsten Lorenz <[email protected]>",
"license": "Apache-2.0",
"private": false,
"directories": {
"dist": "./dist/"
},
"files": [
"dist/src/*"
],
"keywords": [
"solana",
"blockchain",
"IDL",
"API"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@safecoin/beet": "^0.7.1",
"@safecoin/beet-safecoin": "^0.3.1",
"@safecoin/rustbin": "^0.3.0",
"@safecoin/web3.js": "^1.56.2",
"ansi-colors": "^4.1.3",
"camelcase": "^6.2.1",
"debug": "^4.3.3",
"js-sha256": "^0.9.0",
"prettier": "^2.5.1",
"snake-case": "^3.0.4",
"spok": "^1.4.3"
},
"devDependencies": {
"@safecoin/amman": "^0.12.0",
"@safecoin/anchor": "^0.26.0",
"@types/debug": "^4.1.7",
"@types/eslint": "^8.2.2",
"@types/node": "^16.11.12",
"@types/prettier": "^2.4.2",
"@types/recursive-readdir": "^2.2.0",
"@types/rimraf": "^3.0.2",
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"doctoc": "^2.1.0",
"esbuild": "^0.14.11",
"esbuild-runner": "^2.2.1",
"eslint": "^8.6.0",
"pkg-dir": "^5.0.0",
"recursive-readdir": "^2.2.2",
"rimraf": "^3.0.2",
"spok": "^1.4.3",
"tape": "^5.3.2",
"typedoc": "^0.23.11",
"typescript": "^4.8.2"
}
}