chore: final alpha release

This commit is contained in:
Eric Maciel 2022-02-17 19:09:57 -05:00
parent 9f352a45e2
commit 71d0986d7a
2 changed files with 13 additions and 11 deletions

View File

@ -1,7 +1,12 @@
{ {
"name": "@hiveteams/collab", "name": "@hiveteams/collab",
"version": "1.0.0-alpha.5", "version": "1.0.0-alpha.7",
"main": "", "exports": {
"bridge": "./build/bridge",
"client": "./build/client",
"backend": "./build/backend"
},
"type": "module",
"description": "Slate collaborative editing", "description": "Slate collaborative editing",
"scripts": { "scripts": {
"format": "prettier --write", "format": "prettier --write",
@ -39,11 +44,6 @@
"@babel/preset-typescript": "^7.6.0", "@babel/preset-typescript": "^7.6.0",
"@commitlint/cli": "^9.0.1", "@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1", "@commitlint/config-conventional": "^9.0.1",
"@types/jest": "^24.9.0",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.39",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "1.4.32",
"auto-changelog": "^2.1.0", "auto-changelog": "^2.1.0",
"husky": "^3.0.5", "husky": "^3.0.5",
"jest": "^24.9.0", "jest": "^24.9.0",
@ -53,6 +53,11 @@
"typescript": "^4.5.5" "typescript": "^4.5.5"
}, },
"dependencies": { "dependencies": {
"@types/jest": "^24.9.0",
"@types/lodash": "^4.14.178",
"@types/react": "^17.0.39",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "1.4.32",
"@types/debug": "^4.1.7", "@types/debug": "^4.1.7",
"automerge": "0.14.0", "automerge": "0.14.0",
"debug": "^4.3.3", "debug": "^4.3.3",

View File

@ -3,19 +3,16 @@
"rootDir": "./src", "rootDir": "./src",
"baseUrl": "./src", "baseUrl": "./src",
"outDir": "./build", "outDir": "./build",
"lib": ["dom", "dom.iterable", "esnext"],
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"declaration": true, "declaration": true,
"skipLibCheck": true, "skipLibCheck": true,
"declarationMap": true, "declarationMap": true,
"esModuleInterop": true, "esModuleInterop": true,
"jsx": "react", "jsx": "react",
"module": "esnext",
"moduleResolution": "node", "moduleResolution": "node",
"sourceMap": true, "sourceMap": true,
"strict": true, "strict": true,
"suppressImplicitAnyIndexErrors": true, "suppressImplicitAnyIndexErrors": true
"target": "es2019"
}, },
"exclude": ["node_modules"], "exclude": ["node_modules"],
"include": ["**/*.ts", "**/*.tsx"] "include": ["**/*.ts", "**/*.tsx"]