mirror of
https://github.com/cudr/slate-collaborative.git
synced 2024-10-27 20:34:06 +00:00
chore: final alpha release
This commit is contained in:
parent
9f352a45e2
commit
71d0986d7a
19
package.json
19
package.json
@ -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",
|
||||||
|
@ -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"]
|
||||||
|
Loading…
Reference in New Issue
Block a user