-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "@cashscript/utils",
"version": "0.10.2",
"description": "CashScript utilities and types",
"keywords": [
"bitcoin cash",
"cashscript",
"sdk",
"smart contracts"
],
"homepage": "https://cashscript.org",
"bugs": {
"url": "https://github.com/CashScript/cashscript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CashScript/cashscript.git"
},
"license": "MIT",
"author": "Rosco Kalis <roscokalis@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"build": "yarn clean && yarn compile",
"build:test": "yarn build && vitest",
"clean": "rm -rf ./dist",
"clean:test": "rm -rf ./dist-test",
"compile": "tsc -p tsconfig.build.json",
"compile:test": "tsc -p tsconfig.test.json",
"lint": "eslint . --ext .ts --ignore-path ../../.eslintignore",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"pretest": "yarn build:test",
"test": "vitest"
},
"dependencies": {
"@bitauth/libauth": "^3.0.0"
},
"devDependencies": {
"eslint": "^8.54.0",
"typescript": "^5.5.4",
"vitest": "^3.0.2"
},
"gitHead": "bf02a4b641d5d03c035d052247a545109c17b708"
}