-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 919 Bytes
/
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
{
"name": "rs-mem-cache",
"version": "0.0.5",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"repository": {
"url": "https://github.com/JonathanTurnock/rs-mem-cache"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"napi": {
"name": "rs-mem-cache",
"triples": {}
},
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@napi-rs/cli": "^2.18.0",
"@types/ms": "^0.7.34",
"@types/node": "^20.11.20",
"ms": "^2.1.3",
"vitest": "^1.3.1"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"prepublishOnly": "napi prepublish -t npm",
"test": "vitest --run --dir __test__",
"universal": "napi universal",
"version": "napi version"
}
}