-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.44 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
{
"name": "@biconomy/permission-context-builder",
"main": "./dist/_cjs/index.js",
"module": "./dist/_esm/index.js",
"types": "./dist/_types/index.d.ts",
"typings": "./dist/_types/index.d.ts",
"version": "1.1.2",
"scripts": {
"test": "vitest dev -c ./tests/vitest.config.ts",
"build": "bun run clean && bun run build:cjs && bun run build:esm && bun run build:types",
"clean": "rimraf ./dist/_esm ./dist/_cjs ./dist/_types ./dist/tsconfig",
"build:cjs": "tsc --project ./tsconfig/tsconfig.cjs.json && tsc-alias -p ./tsconfig/tsconfig.cjs.json && echo > ./dist/_cjs/package.json '{\"type\":\"commonjs\"}'",
"build:esm": "tsc --project ./tsconfig/tsconfig.esm.json && tsc-alias -p ./tsconfig/tsconfig.esm.json && echo > ./dist/_esm/package.json '{\"type\": \"module\",\"sideEffects\":false}'",
"build:types": "tsc --project ./tsconfig/tsconfig.types.json && tsc-alias -p ./tsconfig/tsconfig.types.json"
},
"author": "Biconomy",
"license": "ISC",
"description": "ERC-7715 Permission Context Builder utility package.",
"keywords": [
"biconomy",
"account abstraction",
"ERC-7715",
"ERC-7579"
],
"devDependencies": {
"bs58": "^6.0.0",
"dotenv": "^16.4.5",
"ethers": "^5",
"tsc": "^2.0.4",
"tsc-alias": "^1.8.10",
"viem": "^2.17.3",
"vitest": "^2.0.2"
},
"dependencies": {
"typescript": "^5.5.3",
"webauthn-p256": "^0.0.8"
},
"files": [
"dist/*",
"README.md"
]
}