-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 KB
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
{
"name": "@powersync/cli-core",
"description": "Core types and base commands for PowerSync CLI and plugins (shared by CLI and plugin-docker).",
"version": "0.9.3",
"license": "FSL-1.1-ALv2",
"author": "POWERSYNC",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/powersync-ja/powersync-cli"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bugs": "https://github.com/powersync-ja/powersync-cli/issues",
"dependencies": {
"@oclif/core": "^4",
"@powersync/cli-schemas": "workspace:*",
"@journeyapps-labs/micro-errors": "^1.0.1",
"yaml": "^2",
"@journeyapps-labs/common-sdk": "1.0.2",
"@powersync/management-client": "catalog:",
"@powersync/management-types": "catalog:",
"@powersync/service-client": "catalog:",
"keychain": "^1.5.0"
},
"devDependencies": {
"@types/node": "^24",
"typescript": "^5",
"@types/keychain": "^1.4.4"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc -b",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"lint": "eslint ."
}
}