-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1008 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
39
{
"name": "@prsm/arc-server",
"version": "1.3.1",
"description": "",
"author": "nvms",
"type": "module",
"main": "dist/index.js",
"license": "ISC",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --minify",
"dev": "tsx watch src/index.ts",
"release": "bumpp package.json --commit 'Release %s' --push --tag && pnpm publish --access public"
},
"dependencies": {
"@prsm/arc": "^2.2.6",
"@prsm/duplex": "^1.1.8",
"ecdsa-sig-formatter": "^1.0.11"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"bumpp": "^9.1.0",
"eslint": "^8.32.0",
"tsup": "^6.7.0",
"typescript": "^4.9.4"
}
}