-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.81 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.81 KB
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
{
"name": "@streamr/autocertifier-client",
"version": "103.3.1",
"description": "Autocertifier Client for Streamr Network",
"repository": {
"type": "git",
"url": "git+https://github.com/streamr-dev/network.git",
"directory": "packages/autocertifier-client"
},
"main": "./dist/exports-nodejs.cjs",
"module": "./dist/exports-nodejs.js",
"types": "./dist/exports-nodejs.d.ts",
"exports": {
".": {
"types": "./dist/exports-nodejs.d.ts",
"browser": {
"types": "./dist/exports-browser.d.ts",
"import": "./dist/exports-browser.js",
"require": "./dist/exports-browser.cjs"
},
"node": "./dist/exports-nodejs.cjs",
"import": "./dist/exports-nodejs.js",
"require": "./dist/exports-nodejs.cjs",
"default": "./dist/exports-nodejs.js"
}
},
"files": [
"dist/exports-nodejs.*",
"dist/exports-browser.*",
"!*.tsbuildinfo"
],
"license": "STREAMR NETWORK OPEN SOURCE LICENSE",
"author": "Streamr Network AG <contact@streamr.network>",
"scripts": {
"prebuild": "npm run reset-self && ./proto.sh",
"build": "tsc -b",
"postbuild": "NODE_OPTIONS='--import tsx' rollup -c rollup.config.mts",
"check": "tsc --noEmit",
"reset-self": "rimraf --glob 'dist/**/*.tsbuildinfo'",
"clean": "rm -rf dist generated *.tsbuildinfo node_modules/.cache || true",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'"
},
"dependencies": {
"@protobuf-ts/runtime-rpc": "^2.8.2",
"@streamr/utils": "103.3.1",
"eventemitter3": "^5.0.4",
"node-forge": "^1.4.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/node-forge": "^1.3.14",
"rimraf": "^6.1.3",
"rollup": "^4.60.1",
"rollup-plugin-dts": "^6.4.1",
"tsx": "^4.21.0"
}
}