forked from metaplex-foundation/cusper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "@j0nnyboi/cusper",
"version": "0.0.1",
"description": "Resolves Custom Program Errors from Solana program logs or error codes.",
"main": "dist/src/cusper.js",
"types": "dist/src/cusper.d.ts",
"scripts": {
"check:publish-ready": "yarn build",
"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",
"pretest": "yarn build",
"test": "tape dist/test/*.js",
"lint": "prettier -c ./src/",
"lint:fix": "prettier --write ./src",
"doc": "rimraf ./docs && typedoc",
"doc:update": "./sh/update-docs"
},
"repository": "[email protected]:metaplex-foundation/cusper.git",
"author": "Thorsten Lorenz <[email protected]>",
"license": "Apache-2.0",
"private": false,
"directories": {
"dist": "./dist/"
},
"files": [
"dist/src/*"
],
"keywords": [
"safecoin",
"blockchain",
"errors",
"custom program error",
"utilities"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^16.11.12",
"@types/prettier": "^2.4.2",
"@types/tape": "^4.13.2",
"axios": "^0.24.0",
"esbuild": "^0.14.8",
"esbuild-runner": "^2.2.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tape": "^5.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.2"
}
}