-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
{
"name": "@moralisweb3/analytics",
"version": "1.0.6",
"description": "",
"type": "module",
"main": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": {
"default": "./dist/index.d.ts"
},
"default": {
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && rollup -c",
"dev": "tsc --watch",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/MoralisWeb3/moralis-analytics-js.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MoralisWeb3/moralis-analytics-js/issues"
},
"homepage": "https://github.com/MoralisWeb3/moralis-analytics-js#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^1.3.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"rollup": "^3.20.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-typescript2": "^0.34.1",
"semantic-release": "^21.0.1",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4"
}
}