-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.81 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
{
"name": "ao-rtc",
"version": "1.0.0",
"description": "WebRTC with ao signalling and connection coordination",
"main": "index.js",
"repository": "https://github.com/project-kardeshev/ao-rtc.git",
"author": "atticusofsparta",
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rm -rf dist lib bundles docs",
"start": "http-server ./dist -p 8080",
"build:web": "node bundle.mjs",
"build:esm": "yarn tsc -p tsconfig.json",
"build:cjs": "yarn tsc -p tsconfig.cjs.json && echo \"{\\\"type\\\": \\\"commonjs\\\"}\" > lib/cjs/package.json",
"build": "yarn clean && yarn build:web && yarn build:esm && yarn build:cjs",
"test": "jest",
"lint": "eslint .",
"format": "prettier --write .",
"docs:serve": "typedoc --out ./docs ./src/**/* && http-server ./docs -p 8081",
"precommit": "lint-staged",
"example:web": "yarn build:web && cp -r bundles/* examples && http-server --port 8080 --host -o examples"
},
"dependencies": {
"@permaweb/aoconnect": "^0.0.51",
"arbundles": "^0.11.0",
"arconnect": "^1.0.3",
"arweave": "^1.15.0",
"js-crypto-rsa": "^1.0.7"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/webrtc": "^0.0.42",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"esbuild": "^0.20.2",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
}
}