-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.86 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
{
"name": "@stacks/rpc-client",
"version": "1.0.0",
"description": "Library for Stacks RPC operations",
"license": "MIT",
"author": "Hiro Systems PBC (https://hiro.so)",
"homepage": "https://hiro.so/stacks-js",
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd",
"build:cjs": "tsc -b tsconfig.build.json",
"build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm",
"build:umd": "NODE_OPTIONS=--max-old-space-size=8192 webpack --config webpack.config.js",
"clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
"pack": "npm pack",
"prepublishOnly": "npm run test && NODE_ENV=production npm run build",
"start": "tsc -b tsconfig.build.json --watch --verbose",
"test": "jest",
"test:watch": "jest --watch --coverage=false",
"typecheck": "tsc --noEmit",
"typecheck:watch": "npm run typecheck -- --watch",
"generate:schema": "openapi-typescript https://raw.githubusercontent.com/stacks-network/stacks-core/master/docs/rpc/openapi.yaml --output src/schema.ts"
},
"dependencies": {
"@stacks/network": "^6.16.0",
"openapi-fetch": "^0.11.1"
},
"devDependencies": {
"fetch-mock": "^11.1.1",
"openapi-typescript": "^7.3.0",
"rimraf": "^6.0.1"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"unpkg": "dist/umd/index.js",
"files": [
"dist",
"src"
],
"keywords": [
"blockstack",
"network",
"stacks"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hirosystems/stacks.js.git"
},
"bugs": {
"url": "https://github.com/blockstack/blockstack.js/issues"
},
"eslintConfig": {
"ignorePatterns": [
"src/schema.ts"
]
}
}