-
Notifications
You must be signed in to change notification settings - Fork 126
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "@lix-js/sdk",
"type": "module",
"version": "0.3.5",
"license": "Apache-2.0",
"exports": {
".": "./dist/index.js"
},
"_filesComment": "Shipping src for better debugging experience",
"files": [
"dist",
"src"
],
"scripts": {
"prebuild": "npm run env-variables",
"build": "tsc --build",
"test": "tsc --noEmit && vitest run --coverage",
"test:watch": "vitest",
"env-variables": "node ./src/services/env-variables/create-index-file.js",
"bench": "vitest bench",
"lint": "eslint src/**/* --fix",
"dev": "tsc --watch",
"format": "prettier ./src --write"
},
"_comment": "Required for tree-shaking https://webpack.js.org/guides/tree-shaking/#mark-the-file-as-side-effect-free",
"sideEffects": false,
"engines": {
"node": ">=21"
},
"dependencies": {
"@lix-js/server-api-schema": "workspace:*",
"dedent": "1.5.1",
"human-id": "^4.1.1",
"js-sha256": "^0.11.0",
"kysely": "^0.27.4",
"sqlite-wasm-kysely": "workspace:*",
"uuid": "^10.0.0"
},
"devDependencies": {
"@opral/tsconfig": "workspace:*",
"@eslint/js": "^9.12.0",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "2.0.5",
"eslint": "^9.12.0",
"json-schema-to-ts": "^3.1.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.9.0",
"vitest": "2.0.5"
}
}