-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
118 lines (118 loc) · 2.96 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@lambda-group/scylladb",
"version": "0.7.1",
"description": "🚀 JavaScript driver for ScyllaDB, harnessing Rust's power through napi-rs for top performance. Pre-release stage. 🧪🔧",
"main": "index.js",
"types": "index.d.ts",
"browser": "browser.js",
"repository": "https://github.com/Daniel-Boll/scylla-javascript-driver",
"author": {
"name": "Daniel Boll",
"email": "[email protected]",
"url": "https://daniel-boll.me"
},
"license": "MIT",
"keywords": [
"napi-rs",
"NAPI",
"N-API",
"Rust",
"node-addon",
"node-addon-api"
],
"files": [
"index.d.ts",
"index.js",
"browser.js"
],
"napi": {
"binaryName": "scylladb",
"targets": [
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"armv7-unknown-linux-gnueabihf",
"aarch64-linux-android",
"aarch64-unknown-linux-musl",
"armv7-linux-androideabi"
]
},
"engines": {
"node": ">= 20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"artifacts": "napi artifacts",
"bench": "node --import @swc-node/register/esm-register benchmark/bench.ts",
"build": "napi build --platform --release --pipe \"node ./scripts/fix-files.mjs\"",
"build:debug": "napi build --platform --pipe \"node ./scripts/fix-files.mjs\"",
"format": "run-p format:prettier format:rs format:toml",
"format:prettier": "prettier . -w",
"format:toml": "taplo format",
"format:rs": "cargo fmt",
"lint": "oxlint",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"version": "napi version"
},
"devDependencies": {
"@emnapi/core": "^1.2.0",
"@emnapi/runtime": "^1.2.0",
"@napi-rs/cli": "3.0.0-alpha.64",
"@napi-rs/wasm-runtime": "^0.2.4",
"@swc-node/register": "^1.10.6",
"@swc/core": "^1.6.13",
"@taplo/cli": "^0.7.0",
"@tybys/wasm-util": "^0.9.0",
"@types/node": "^22.9.0",
"ava": "^6.1.3",
"chalk": "^5.3.0",
"emnapi": "^1.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"npm-run-all2": "^7.0.0",
"oxlint": "^0.11.0",
"prettier": "^3.3.3",
"tinybench": "^3.0.0",
"tsx": "^4.19.2",
"typescript": "^5.5.3"
},
"lint-staged": {
"*.@(js|ts|tsx)": [
"oxlint --fix"
],
"*.@(js|ts|tsx|yml|yaml|md|json)": [
"prettier --write"
],
"*.toml": [
"taplo format"
]
},
"ava": {
"extensions": {
"ts": "module"
},
"timeout": "2m",
"workerThreads": false,
"environmentVariables": {
"TS_NODE_PROJECT": "./tsconfig.json"
},
"nodeArguments": [
"--import",
"@swc-node/register/esm-register"
]
},
"prettier": {
"printWidth": 120,
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"arrowParens": "always"
},
"packageManager": "[email protected]"
}