forked from NftEyez/sol-rayz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "sol-rayz",
"version": "0.99.4",
"license": "MIT",
"author": {
"name": "NftEyez Team",
"url": "https://nfteyez.global/"
},
"repository": {
"type": "git",
"url": "https://github.com/Atomicwallet/sol-rayz.git"
},
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"scripts": {
"build": "yarn run clean && yarn run compile",
"watch": "yarn run clean && yarn run compile:watch",
"clean": "rm -fr ./dist",
"compile": "npx tsc -p tsconfig.build.json",
"compile:watch": "tsc -w -p tsconfig.build.json",
"prepublishOnly": "yarn run build",
"test": "yarn run build"
},
"devDependencies": {
"@solana/web3.js": "1.87.6",
"@types/lodash.chunk": "4.2.9",
"@types/lodash.orderby": "4.6.9",
"rimraf": "3.0.2",
"typescript": "4.4.4"
},
"peerDependencies": {
"@solana/web3.js": "1.87.6"
},
"dependencies": {
"@solana/spl-name-service": "0.1.4",
"borsh": "0.6.0",
"lodash.chunk": "4.2.0",
"lodash.orderby": "4.6.0"
}
}