-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.23 KB
/
package.json
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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@agoralabs-sh/avm-web-provider",
"version": "1.7.0",
"description": "A TypeScript implementation that allows clients to connect and interact with web-based providers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"CONTRIBUTING.md",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/agoralabs-sh/avm-web-provider"
},
"author": {
"name": "Kieran O'Neill",
"email": "hello@kieranoneill.com",
"url": "https://github.com/kieranroneill"
},
"license": "MIT",
"keywords": [
"algorand",
"algosdk",
"arc0027",
"avm",
"blockchain",
"voi"
],
"private": false,
"engines": {
"node": ">=18.20.3"
},
"scripts": {
"build": "rm -rf dist && yarn build:module && yarn build:bundle",
"build:bundle": "TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack",
"build:module": "tspc --build tsconfig.build.json --force",
"docs:build": "docusaurus build --out-dir .docs",
"docs:serve": "docusaurus serve --dir .docs --no-open",
"docs:start": "docusaurus start --no-open --port 8080",
"lint": "eslint . --ext .ts --ext .js",
"prepare": "husky",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,ts}\"",
"test": "jest",
"types:check": "tsc --noEmit --project tsconfig.build.json"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@docusaurus/core": "^3.5.2",
"@docusaurus/module-type-aliases": "^3.5.2",
"@docusaurus/preset-classic": "^3.5.2",
"@docusaurus/remark-plugin-npm2yarn": "^3.5.2",
"@docusaurus/tsconfig": "^3.5.2",
"@mdx-js/react": "^3.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"algosdk": "^2.7.0",
"clsx": "^2.1.0",
"docusaurus-plugin-sass": "^0.2.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.70.0",
"semantic-release": "^24.1.1",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"typescript": "^5.3.3",
"typescript-transform-paths": "^3.4.7",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"uuid": "^9.0.1"
},
"resolutions": {
"body-parser": "^1.20.3",
"braces": "^3.0.3",
"express": "^4.19.2",
"follow-redirects": "^1.15.6",
"ip": "^2.0.1",
"micromatch": "^4.0.8",
"send": "^0.19.0",
"serve-static": "^1.16.0",
"tar": "^6.2.1",
"webpack": "^5.94.0",
"webpack-dev-middleware": "^5.3.4",
"ws": "^7.5.10"
}
}