-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1009 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1009 Bytes
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
{
"name": "@pump-fun/segments-sdk",
"version": "1.0.4",
"description": "TypeScript SDK for Pump.fun user segmentation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"pump.fun",
"segments",
"user-segmentation"
],
"author": "Pump.fun Engineering",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.0.0",
"@aws-sdk/lib-dynamodb": "^3.0.0",
"imurmurhash": "^0.1.4"
},
"devDependencies": {
"@types/imurmurhash": "^0.1.4",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "restricted"
}
}