mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-21 01:21:50 +08:00
37 lines
951 B
JSON
37 lines
951 B
JSON
{
|
|
"name": "@qinglong/local-secret",
|
|
"version": "3.0.0-alpha.2",
|
|
"private": true,
|
|
"description": "QingLong 3.0 encrypted local SecretStore and private keyring",
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=24.18.0 <25"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"require": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/**/*.js",
|
|
"dist/**/*.d.ts"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"check": "node ../../scripts/ql3-build-package-closure.cjs && tsc -p tsconfig.json --noEmit",
|
|
"test": "node ../../scripts/ql3-build-package-closure.cjs && node --test test/*.test.cjs"
|
|
},
|
|
"dependencies": {
|
|
"@qinglong/runtime-core": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@qinglong/local-sqlite": "workspace:*",
|
|
"@types/node": "24.13.3",
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|