forked from apache/opendal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.52 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
{
"name": "opendal",
"author": "Databend Authors <[email protected]>",
"version": "0.0.1",
"main": "index.js",
"types": "index.d.ts",
"description": "Open Data Access Layer: Access data freely, painlessly, and efficiently",
"repository": "[email protected]/datafuselabs/opendal.git",
"napi": {
"name": "opendal",
"triples": {
"additional": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"universal-apple-darwin"
]
}
},
"files": [
"index.d.ts",
"index.js",
"generated.js"
],
"license": "Apache-2.0",
"devDependencies": {
"@napi-rs/cli": "^2.14.8",
"@swc-node/register": "^1.6.2",
"@swc/core": "^1.3.38",
"@types/node": "^18.14.5",
"ava": "^5.2.0",
"typescript": "^4.9.5"
},
"ava": {
"require": [
"@swc-node/register"
],
"extensions": [
"ts"
],
"timeout": "3m",
"environmentVariables": {
"TS_NODE_PROJECT": "./tsconfig.json"
},
"verbose": true
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --js generated.js",
"build:debug": "napi build --platform --js generated.js",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"universal": "napi universal",
"version": "napi version"
},
"packageManager": "[email protected]+sha224.cca891d4a8671d4898aba3426674bb734dbbf88cef82dd4dacd71c9f"
}