-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.88 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
{
"name": "genlayer-js",
"type": "module",
"version": "0.23.1",
"description": "GenLayer JavaScript SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts src/chains/index.ts src/types/index.ts --format cjs,esm --dts --splitting --out-dir dist --no-treeshake",
"build:watch": "tsup src/index.ts src/chains/index.ts src/types/index.ts --format cjs,esm --dts --splitting --out-dir dist --no-treeshake --watch",
"test": "vitest --typecheck",
"test:smoke": "vitest run --config vitest.smoke.config.ts",
"test:watch": "vitest --watch",
"lint": "eslint . --fix --ext .ts",
"release": "release-it --ci"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./chains": {
"import": "./dist/chains/index.js",
"require": "./dist/chains/index.js"
},
"./types": {
"import": "./dist/types/index.js",
"require": "./dist/types/index.js"
}
},
"keywords": [],
"author": "GenLayer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/genlayerlabs/genlayer-js.git"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.2",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@vitest/coverage-v8": "^2.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"dependencies": {
"eslint-plugin-import": "^2.30.0",
"typescript-parsec": "^0.3.4",
"viem": "^2.29.0"
}
}