-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.16 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.16 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "casper-storage",
"version": "1.5.1",
"description": "Provides standard implementation of wallet workflow, following standards BIPs, SLIPs",
"author": "Caperdash.io <hello@casperdash.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/CasperDash/casper-storage.git"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"casper",
"storage",
"casper-storage"
],
"bugs": {
"url": "https://github.com/CasperDash/casper-storage/issues"
},
"browser": "./dist/tsc/cli.js",
"main": "./dist/tsc/cli.js",
"types": "./dist/tsc/cli.d.ts",
"scripts": {
"prepublishOnly": "yarn build-all",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "yarn test:web",
"test:web": "jest --env=./test/test-web-env.js",
"test:node": "jest --env=node",
"testci": "jest --env=./test/test-web-env.js --coverage",
"clean": "rimraf dist build package coverage docs",
"docs": "typedoc --entryPoints src/index.ts",
"build": "tsc -p tsconfig.build.json --downlevelIteration",
"build-all": "yarn clean && yarn build && yarn esbuild-browser",
"esbuild-browser": "esbuild src/browser.ts --bundle --minify --sourcemap=external --format=esm --outfile=dist/browser/index.js",
"ensure": "yarn lint && yarn test",
"deploy": "yarn build-all && npm publish",
"helpme": "echo 'ensure, test, build-all'"
},
"dependencies": {
"@noble/curves": "^1.1.0",
"@noble/hashes": "^1.3.1",
"@scure/base": "^1.1.1",
"key-encoder": "^2.0.3"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"buffer": "^6.0.3",
"esbuild": "^0.18.17",
"eslint": "^8.45.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"rimraf": "^5.0.1",
"ts-jest": "29.1.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"homepage": "https://github.com/CasperDash/casper-storage#readme",
"directories": {
"doc": "docs",
"test": "test"
}
}