-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 KB
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
{
"name": "@lab11/anchorgen",
"version": "0.0.0-development",
"description": "Anchor generator from IDLs",
"author": "labeleven.dev",
"homepage": "https://github.com/labeleven-dev/anchorgen#readme",
"repository": {
"type": "git",
"url": "https://github.com/labeleven-dev/anchorgen.git"
},
"bugs": {
"url": "https://github.com/labeleven-dev/anchorgen/issues"
},
"license": "MIT",
"keywords": [
"solana",
"anchor",
"rust"
],
"engines": {
"node": ">=14.0.0"
},
"main": "./build/src/index.js",
"bin": {
"anchorgen": "./build/src/index.js"
},
"scripts": {
"test": "ts-mocha test/**/*.test.ts --exit",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"watch:compile": "tsc -w",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"release": "semantic-release"
},
"dependencies": {
"@project-serum/anchor": "^0.24.2",
"handlebars": "^4.7.7",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/yargs": "^17.0.10",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.8.0",
"typescript": "^4.6.4",
"gts": "^3.1.0",
"@types/node": "^14.11.2",
"semantic-release": "^19.0.2"
}
}