AFFiNE/packages/native/package.json

40 lines
1019 B
JSON
Raw Normal View History

{
2023-05-10 12:16:48 +03:00
"name": "@affine/native",
2023-04-14 02:33:21 +03:00
"private": true,
"main": "index.js",
"types": "index.d.ts",
"napi": {
2023-05-10 12:16:48 +03:00
"name": "affine",
"triples": {
"additional": [
2023-05-10 12:16:48 +03:00
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-pc-windows-msvc"
]
}
},
2023-05-11 04:52:27 +03:00
"license": "MPL-2.0",
"devDependencies": {
2023-03-29 21:35:42 +03:00
"@napi-rs/cli": "^2.15.2",
2023-05-10 12:16:48 +03:00
"@types/node": "^18.16.7",
"@types/uuid": "^9.0.1",
"cross-env": "^7.0.3",
"rxjs": "^7.8.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"uuid": "^9.0.0"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"universal": "napi universal",
2023-05-10 13:06:26 +03:00
"test": "cross-env TS_NODE_TRANSPILE_ONLY=1 TS_NODE_PROJECT=./tsconfig.json node --test --loader ts-node/esm --experimental-specifier-resolution=node ./__tests__/**/*.mts",
"version": "napi version"
2023-04-21 01:28:51 +03:00
},
2023-05-11 09:09:21 +03:00
"version": "0.6.0-canary.0"
}