AFFiNE/packages/storage/package.json

44 lines
1020 B
JSON
Raw Normal View History

{
"name": "@affine/storage",
2023-09-08 01:22:44 +03:00
"version": "0.9.0-canary.11",
"engines": {
"node": ">= 10.16.0 < 11 || >= 11.8.0"
},
"type": "module",
"main": "./index.js",
"module": "./index.js",
"types": "index.d.ts",
"exports": {
".": {
"require": "./storage.node",
"import": "./index.js",
"types": "./index.d.ts"
}
},
"napi": {
"binaryName": "storage",
"targets": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-pc-windows-msvc",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"x86_64-unknown-linux-gnu",
"universal-apple-darwin"
]
},
"scripts": {
"test": "node --test ./__tests__/**/*.spec.js",
"build": "napi build --release --strip",
"build:debug": "napi build",
"prepublishOnly": "napi prepublish -t npm",
"artifacts": "napi artifacts",
"version": "napi version"
},
"devDependencies": {
2023-08-11 22:36:10 +03:00
"@napi-rs/cli": "^3.0.0-alpha.5",
2023-08-25 19:52:33 +03:00
"lib0": "^0.2.83",
2023-07-20 19:39:16 +03:00
"yjs": "^13.6.7"
}
}