-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 KB
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
{
"name": "@formo/analytics-node",
"version": "1.0.3",
"main": "dist/cjs/src/index.js",
"license": "MIT",
"module": "dist/esm/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/getformo/sdk-node.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "pnpm@11.1.2",
"scripts": {
"build": "pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm clean && pnpm build",
"test": "jest",
"test:queue": "jest test/queue/EventQueue.test.ts",
"test:integration": "RUN_INTEGRATION_TESTS=true jest test/__tests__/integration.test.ts --runInBand",
"lint": "tsc --noEmit"
},
"dependencies": {
"ethereum-cryptography": "3.2.0"
},
"devDependencies": {
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.29",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"jest": "^30.3.0",
"typescript": "^5.9.3"
}
}