forked from yorkie-team/yorkie-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "yorkie-js-sdk",
"version": "0.4.27",
"description": "Yorkie JS SDK",
"main": "./dist/yorkie-js-sdk.js",
"typings": "./dist/yorkie-js-sdk.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"build:proto": "npx buf generate",
"build:docs": "typedoc",
"build:examples": "npm run build --workspace examples",
"build:ghpages": "mkdir -p ghpages/examples && cp -r docs ghpages/api-reference && find examples -name 'dist' -type d -exec sh -c 'cp -r {} ghpages/examples/$(basename $(dirname {}))' \\;",
"dev": "vite build -c vite.preview.ts && vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:bench": "vitest bench",
"test:ci": "vitest run --coverage",
"test:yorkie.dev": "TEST_RPC_ADDR=https://api.yorkie.dev vitest run --coverage",
"lint": "eslint . --fix --max-warnings=0 --ext .ts",
"prepare": "npm run build"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yorkie-team/yorkie-js-sdk.git"
},
"author": {
"name": "hackerwins",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/yorkie-team/yorkie-js-sdk/issues"
},
"homepage": "https://github.com/yorkie-team/yorkie-js-sdk#readme",
"devDependencies": {
"@buf/googleapis_googleapis.connectrpc_es": "^1.4.0-20240524201209-f0e53af8f2fc.3",
"@bufbuild/buf": "^1.28.1",
"@bufbuild/protoc-gen-es": "^1.6.0",
"@connectrpc/protoc-gen-connect-es": "^1.4.0",
"@types/google-protobuf": "^3.15.5",
"@types/long": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vitest/coverage-istanbul": "^0.34.5",
"@vitest/coverage-v8": "^0.34.5",
"eslint": "^8.19.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.16",
"husky": "^8.0.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.13",
"typescript": "^4.7.4",
"typescript-transform-paths": "^3.3.1",
"vite": "^4.4.9",
"vite-plugin-commonjs": "^0.10.1",
"vite-plugin-dts": "^3.9.1",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.5"
},
"dependencies": {
"@bufbuild/protobuf": "^1.6.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-web": "^1.4.0",
"long": "^5.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"workspaces": [
"examples/*"
]
}