-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
{
"name": "@neongd/neo-dapi",
"version": "2.0.2",
"description": "Neo Dapi types and toolings",
"keywords": [
"neo",
"dapi"
],
"homepage": "https://github.com/neo-ngd/neo-dapi-monorepo",
"bugs": {
"url": "https://github.com/neo-ngd/neo-dapi-monorepo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neo-ngd/neo-dapi-monorepo.git"
},
"license": "MIT",
"author": "neo-ngd <github.com/neo-ngd>",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"docs"
],
"scripts": {
"prepare": "node -p $'`export const VERSION = \\'${require(\\'./package.json\\').version}\\';`' > src/version.ts",
"prebuild": "rimraf dist",
"build": "run-s build:types build:cjs build:esm build:umd",
"build:types": "tsc -p tsconfig.types.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:umd": "webpack",
"lint": "eslint . --max-warnings 0",
"test": "jest"
},
"dependencies": {
"@cityofzion/neon-core": "^5.6.0",
"@neongd/json-rpc": "workspace:*",
"bignumber.js": "^9.1.2",
"buffer": "^6.0.3",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "^4.3.5",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
},
"volta": {
"node": "16.20.2"
},
"publishConfig": {
"access": "public"
}
}