-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.67 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
{
"name": "@indexcoop/analytics-sdk",
"description": "The AnalyticsSDK of the Index Coop.",
"version": "0.28.2",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"jest": "^29.5.0",
"prettier": "2.8.8",
"release-it": "^15.10.3",
"semantic-release": "23.0.6",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --minify",
"build:watch": "npm run build -- --watch src",
"lint": "prettier -c . && eslint ./src",
"lint:fix": "prettier . --write && eslint ./src --fix",
"test": "jest",
"test:watch": "jest --watch",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IndexCoop/analytics-sdk.git"
},
"keywords": [
"analytics",
"sdk",
"index",
"coop"
],
"author": "IndexCoop",
"license": "MIT",
"bugs": {
"url": "https://github.com/IndexCoop/analytics-sdk/issues"
},
"homepage": "https://github.com/IndexCoop/analytics-sdk#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@indexcoop/tokenlists": "3.7.0",
"ethers": "5.7.2"
}
}