-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.24 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.24 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@3loop/transaction-interpreter",
"version": "0.11.32",
"description": "",
"license": "GPL-3.0-only",
"type": "module",
"exports": {
"./dist/**/*.d.ts": "./dist/**/*.d.ts",
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.cjs",
"import": "./dist/*.js"
}
},
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist/**/*",
"src/**/*",
"README.md"
],
"scripts": {
"build:interpreters": "tsx ./scripts/index.ts build",
"build:types": "tsc -b ./tsconfig.types.json",
"build": "rimraf dist && rimraf *.tsbuildinfo && pnpm build:interpreters && tsup && pnpm run build:types",
"check": "tsc --noEmit",
"dev": "pnpm build:interpreters && tsup --watch",
"lint": "eslint --exit-on-fatal-error --ignore-path .eslintignore --ext .ts .",
"fix": "eslint --ignore-path .eslintignore --ext .ts . --fix"
},
"dependencies": {
"@3loop/transaction-decoder": "workspace:^"
},
"peerDependencies": {
"effect": ">=3.15.1",
"quickjs-emscripten": ">=0.29.1"
},
"peerDependenciesMeta": {
"quickjs-emscripten": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/generator": "^7.25.6",
"@babel/parser": "^7.25.6",
"@babel/traverse": "^7.25.6",
"@babel/types": "^7.25.6",
"@swc/core": "^1.11.5",
"@types/babel-traverse": "^6.25.10",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/node": "^20.16.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"effect": "^3.15.1",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"eslint-config-custom": "workspace:*",
"eslint-config-prettier": "^8.10.0",
"fast-glob": "^3.3.2",
"prettier": "^2.8.8",
"quickjs-emscripten": "^0.31.0",
"rimraf": "^6.0.1",
"tsup": "^7.2.0",
"tsx": "^4.19.0",
"typescript": "5.7.3"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false
}