-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "@spec.dev/core",
"version": "0.0.142",
"description": "Spec Core Library",
"keywords": [
"javascript",
"typescript",
"spec",
"core",
"toolkit",
"indexing",
"protocol"
],
"homepage": "https://github.com/spec-dev/core-lib",
"bugs": "https://github.com/spec-dev/core-lib/issues",
"author": "Spec",
"files": [
"dist",
"src"
],
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"types": "dist/main/index.d.ts",
"sideEffects": false,
"repository": "spec-dev/core-lib",
"scripts": {
"clean": "rimraf dist",
"scrap": "ts-node ./src/scrap.ts",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"build": "genversion src/lib/version.ts --es6 && run-s clean format build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"types-generate": "dts-gen -m '@spec.dev/core' -s"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@spec.dev/rpc": "^0.0.5",
"@spec.dev/tables": "^0.0.20",
"@spec.types/spec": "^0.0.33",
"bn.js": "^5.2.1",
"js-sha256": "^0.10.1",
"keccak256": "^1.0.6",
"strip-comments": "^2.0.1"
},
"devDependencies": {
"@types/node": "^18.0.3",
"genversion": "^3.0.1",
"husky": "^4.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.11",
"ts-node": "^10.8.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jsdelivr": "dist/umd/core.js",
"unpkg": "dist/umd/core.js"
}