-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.69 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
88
89
90
91
92
93
94
95
96
97
{
"name": "@unique-nft/api",
"version": "0.1.13",
"sideEffects": false,
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./schema": {
"import": "./dist/schema.mjs",
"require": "./dist/schema.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"schema": [
"./dist/schema.d.ts"
]
}
},
"files": [
"dist/",
"src/"
],
"repository": "github:UniqueNetwork/ts_api",
"description": "Definitely typed JS API for the Unique Network blockchain",
"keywords": [
"Unique Network",
"NFT",
"RFT",
"blockchain",
"Polkadot",
"Kusama"
],
"scripts": {
"ts": "tsc --project tsconfig.json",
"clean": "rimraf dist && mkdirp dist",
"build": "yarn clean && yarn tsup --config configs/tsup.config.ts",
"rollup": "rollup --config rollup.config.ts --configPlugin typescript --sourcemap",
"analyze": "yarn rollup --analyze",
"develop": "yarn rollup --watch",
"esmon": "nodemon --exec \"yarn esno\" ",
"patch": "npm run release -- -i patch --ci",
"release": "dotenv -e .release.env -- release-it --config ./configs/.release-it.js",
"release_github": "dotenv -e .release.env -- release-it --no-increment --no-git --no-npm --github.release --github.update",
"testrun": "vitest run",
"test": "vitest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-typescript": "^8.3.2",
"@types/node": "^17.0.35",
"dotenv": "^16.0.1",
"dotenv-cli": "^5.1.0",
"esno": "^0.16.3",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.16",
"release-it": "^15.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.71.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-gzip": "^3.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^2.0.7",
"rollup-plugin-typescript2": "^0.31.2",
"tslib": "^2.4.0",
"tsup": "^6.1.0",
"typescript": "^4.7.2",
"vitest": "^0.12.6"
},
"dependencies": {
"@noble/hashes": "^1.1.2",
"@polkadot/api": "8.7.1",
"@polkadot/extension-dapp": "0.43.3",
"@polkadot/keyring": "9.4.1",
"@polkadot/types": "8.7.1",
"@polkadot/util": "9.4.1",
"@polkadot/util-crypto": "9.4.1",
"@unique-nft/opal-testnet-types": "0.5.3",
"@unique-nft/quartz-mainnet-types": "0.6.1",
"@unique-nft/unique-mainnet-types": "0.6.3",
"base-x": "^4.0.0",
"ethers": "5.6.8",
"protobufjs": "^6.11.3"
}
}