-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
62 lines (62 loc) · 1.95 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
{
"name": "@replit/crosis",
"version": "13.6.0",
"description": "Goval connection and channel manager",
"files": [
"/dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint --ext .js,.ts src/ src.browser/",
"build": "tsc",
"build:browser": "yarn clean && yarn build && parcel build src.browser/index.js -d dist.browser --out-file crosis.js",
"debug": "node debug/server.js",
"clean": "rm -rf dist dist.browser",
"docs": "typedoc --out docs --name crosis src/index.ts node_modules/@replit/protocol/index.d.ts",
"test": "jest --no-cache",
"preversion": "yarn lint && yarn clean && yarn build",
"postversion": "echo \"pushing branch and tag\" && git push origin HEAD --tags && echo \"publishing\" && yarn publish --new-version $npm_package_version && echo \"Successfully released version v$npm_package_version!\""
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"abortcontroller-polyfill": "1.7.5",
"engine.io-client": "3.5.4"
},
"devDependencies": {
"@replit/protocol": ">=0.3.16",
"@types/engine.io-client": "^3.1.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.7",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"express": "^4.19.2",
"jest": "^29.7.0",
"jest-websocket-mock": "^2.5.0",
"mock-socket": "^9.3.1",
"prettier": "^2.6.2",
"ts-jest": "^29.1.5",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"ws": "^8.17.1"
},
"peerDependencies": {
"@replit/protocol": ">=0.2.15"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"semi": true,
"useTabs": false,
"parser": "typescript",
"arrowParens": "always"
}
}