-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "loro-migrate",
"version": "0.2.2",
"description": "Migrate Tool for Loro",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"loro-migrate": "dist/index.cjs"
},
"homepage": "https://github.com/loro-dev/migrate#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/loro-dev/migrate.git"
},
"scripts": {
"build": "unbuild",
"prepack": "unbuild",
"cli": "ts-node index.ts"
},
"keywords": [],
"author": "leon7hao",
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"dependencies": {
"loro-crdt": "1.0.0-beta.4",
"loro-crdt-v015": "npm:loro-crdt@=0.15.5-alpha.0",
"loro-crdt-v016": "npm:loro-crdt@=0.16.12",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/yargs": "^17.0.32",
"@typescript-eslint/parser": "^6.2.0",
"typescript": "^5.0.2",
"unbuild": "^2.0.0"
}
}