forked from starknet-io/starknet.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "starknet",
"version": "3.17.0",
"description": "JavaScript library for StarkNet",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build && husky install",
"build": "tsc",
"pretest": "npm run lint",
"test": "jest",
"posttest": "npm run format",
"test:watch": "jest --watch",
"docs": "cd www && npm run start",
"format": "prettier --loglevel warn --write \"**/*.{ts,js,md,yml,json}\"",
"lint": "eslint . --cache --fix --ext .ts"
},
"keywords": [
"starknet",
"cairo",
"starkware",
"l2",
"zk",
"rollup"
],
"repository": "github:0xs34n/starknet.js",
"author": "Sean Han",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/elliptic": "^6.4.14",
"@types/jest": "^28.1.1",
"@types/json-bigint": "^1.0.1",
"@types/minimalistic-assert": "^1.0.1",
"@types/pako": "^2.0.0",
"@types/url-join": "^4.0.1",
"@types/whatwg-fetch": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"cross-fetch": "^3.1.5",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"fetch-intercept": "^2.4.0",
"husky": "^8.0.1",
"import-sort-style-module": "^6.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": "^13.0.1",
"prettier": "^2.7.0",
"prettier-plugin-import-sort": "^0.0.7",
"typedoc": "^0.22.17",
"typescript": "^4.7.3",
"whatwg-fetch": "^3.6.2"
},
"dependencies": {
"@ethersproject/bytes": "^5.6.1",
"bn.js": "^5.2.1",
"cross-fetch": "^3.1.5",
"elliptic": "^6.5.4",
"ethereum-cryptography": "^1.0.3",
"hash.js": "^1.1.7",
"json-bigint": "^1.0.0",
"minimalistic-assert": "^1.0.1",
"pako": "^2.0.4",
"ts-custom-error": "^3.2.0",
"url-join": "^4.0.1"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,js,md,yml,json}": "prettier --write"
},
"jest": {
"testMatch": [
"**/__tests__/**/(*.)+(spec|test).[jt]s?(x)"
],
"setupFilesAfterEnv": [
"./__tests__/jest.setup.ts"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}