-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.17 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": "jw3t",
"version": "1.0.10",
"description": "A library to create and validate json web3 tokens.",
"main": "./dist/cjs/lib/index.js",
"types": "./dist/cjs/lib/index.d.ts",
"repository": "https://github.com/hamidra/jw3t.git",
"author": "hamidra <hamid.alipour@gmail.com>",
"license": "Apache License 2.0",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jest": "^29.5.0",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"files": [
"dist"
],
"scripts": {
"build": "yarn build:ems && yarn build:cjs",
"build:cjs": "tsc --module commonjs --outDir ./dist/cjs",
"build:ems": "tsc --module esnext --outDir ./dist/ems",
"test": "jest",
"prepare": "yarn build & yarn test"
},
"dependencies": {
"@polkadot/api": "^10.1.4",
"@polkadot/keyring": "^11.1.1",
"@polkadot/util": "^11.1.1",
"@polkadot/util-crypto": "^11.1.1",
"js-base64": "^3.7.5"
},
"exports": {
".": {
"require": "./dist/cjs/lib/index.js",
"default": "./dist/ems/lib/index.js"
}
}
}