-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 978 Bytes
/
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
{
"name": "@lambda-group/charydbis",
"repository": "https://github.com/Daniel-Boll/charydbis",
"version": "0.4.2",
"description": "🚀 NodeJS ScyllaDB ORM. 🧪🔧",
"main": "src/index.js",
"types": "src/index.d.ts",
"keywords": [
"ScyllaDB",
"ORM"
],
"author": {
"name": "Daniel Boll",
"email": "[email protected]",
"url": "https://daniel-boll.me"
},
"tsup": {
"entry": [
"src/**/*.ts",
"examples/**/*.ts"
],
"splitting": true,
"sourcemap": true,
"clean": true,
"outDir": "dist",
"dts": true
},
"scripts": {
"build": "tsup",
"example": "./scripts/run-example.sh"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@swc-node/register": "^1.10.0",
"@tsconfig/node16": "^16.1.3",
"@types/node": "^20.14.9",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"tsx": "^4.15.6"
},
"dependencies": {
"@lambda-group/scylladb": "^0.3.1",
"reflect-metadata": "^0.2.2",
"typescript": "^5.4.5"
}
}