-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 966 Bytes
/
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
{
"name": "@linkdacademy/neo-name-service-sdk",
"version": "0.1.4",
"description": "A SDK for the Neo Name Service (Neo N3) that allows you to interact with the NNS smart contract.",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest"
},
"author": "Ricardo Prado @ Linkd Academy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/linkd-academy/neo-name-service-sdk"
},
"dependencies": {
"@cityofzion/neon-core": "^5.6.0",
"@cityofzion/neon-dappkit": "^0.4.2",
"@cityofzion/neon-js": "^5.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
},
"peerDependencies": {
"@cityofzion/neon-dappkit": "^0.4.2"
}
}