-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.12 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.12 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@lit-protocol/vincent-source",
"version": "0.0.0",
"description": "Lit Protocol Vincent SDK",
"license": "MIT",
"private": false,
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/LIT-Protocol/Vincent.git"
},
"homepage": "https://github.com/LIT-Protocol/Vincent#readme",
"bugs": {
"url": "https://github.com/LIT-Protocol/Vincent/issues"
},
"keywords": [
"library"
],
"packageManager": "pnpm@10.7.0",
"scripts": {
"heroku-postbuild": "echo 'Skipping full repo build during Heroku deployment. Make sure your Procfile runs any necessary build commands.'",
"build": "nx run-many --target=build --all",
"test": "nx run-many --target=test --all",
"lint": "nx run-many --target=lint --all",
"format": "nx format:write",
"release": "nx release",
"docs:generate": "node scripts/docs/generate-all-docs.mjs",
"install:contracts": "cd packages/libs/contracts-sdk && forge install",
"make:contracts": "cd packages/libs/contracts-sdk && make",
"gen:contracts": "bun run make:contracts get-abis run-postbuild-scripts",
"clean": "nx reset && nx run-many --target=clean --all && rm -Rf node_modules bun.lock",
"prepare": "husky",
"bulk-publish": "sh ./scripts/bulk-publish.sh"
},
"dependencies": {
"tslib": "2.8.1"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.44.2",
"@eslint/js": "^9.25.1",
"@lit-protocol/esbuild-plugin-polyfill-node": "^0.3.0",
"@lit-protocol/flags": "^2.1.0",
"@nx/esbuild": "21.2.1",
"@nx/eslint": "21.2.1",
"@nx/eslint-plugin": "21.2.1",
"@nx/jest": "21.2.1",
"@nx/js": "21.2.1",
"@nx/node": "21.2.1",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.29",
"@swc/helpers": "~0.5.11",
"@swc/jest": "^0.2.39",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"bun": "^1.2.5",
"chokidar-cli": "^3.0.0",
"esbuild": "^0.19.2",
"eslint": "^9.22.0",
"eslint-config-next": "15.1.7",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-perfectionist": "^4.15.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jsdom": "^27.0.0",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.5.1",
"live-server": "^1.2.2",
"npm-run-all": "^4.1.5",
"nx": "21.2.1",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6",
"ts-node": "10.9.1",
"typedoc": "0.28.13",
"typedoc-material-theme": "1.3.0",
"typedoc-plugin-extras": "^4.0.0",
"typedoc-plugin-frontmatter": "^1.3.0",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-plugin-zod": "^1.4.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.0"
},
"overrides": {
"typescript": "5.8.3"
}
}