-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.78 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@unicitylabs/state-transition-sdk",
"version": "1.6.0",
"description": "Generic State Transition Flow engine for value-carrier agents",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "module",
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc",
"build:check": "tsc --noEmit",
"lint": "eslint \"src/**/*\" \"tests/**/*\"",
"lint:fix": "eslint \"src/**/*\" \"tests/**/*\" --fix",
"test": "jest --testPathPatterns=tests --testPathIgnorePatterns=tests/e2e",
"test:unit": "jest --testPathPatterns=tests/unit --testPathPatterns=tests/functional",
"test:integration": "jest --testPathPatterns=tests/integration",
"test:e2e": "jest --testPathPatterns=tests/e2e",
"test:ci": "DEBUG=testcontainers:containers jest --testPathPatterns=tests --testPathIgnorePatterns=tests/e2e --ci --reporters=default",
"test:single": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/unicitynetwork/state-transition-sdk.git"
},
"files": [
"lib/**/*",
"LICENSE",
"README.md"
],
"author": "cryptohog",
"license": "ISC",
"homepage": "https://unicitynetwork.github.io/state-transition-sdk/",
"dependencies": {
"@noble/hashes": "2.0.1",
"@noble/curves": "2.0.1",
"uuid": "13.0.0"
},
"devDependencies": {
"@babel/preset-env": "7.28.3",
"@babel/preset-typescript": "7.27.1",
"@eslint/js": "9.37.0",
"@types/jest": "30.0.0",
"babel-jest": "30.2.0",
"eslint": "9.37.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.4",
"globals": "16.4.0",
"jest": "30.2.0",
"testcontainers": "11.7.1",
"typescript": "5.9.3",
"typescript-eslint": "8.46.1"
}
}