-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.36 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.36 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@recappi/sdk",
"version": "1.2.0",
"description": "Cross platform audio capture SDK",
"keywords": [
"audio",
"napi-rs",
"recording"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Recappi/sdk.git"
},
"workspaces": [
"./playground"
],
"files": [
"index.d.cts",
"./dist/**/*"
],
"type": "module",
"main": "index.cjs",
"types": "./index.d.cts",
"exports": {
".": "./index.cjs",
"./encode-wav": {
"default": "./dist/encode-wav.js",
"types": "./dist/encode-wav.d.ts"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"artifacts": "napi artifacts",
"bench": "node --import @oxc-node/core/register benchmark/bench.ts",
"build": "napi build --platform --release --js index.cjs --dts index.d.cts",
"build:debug": "napi build --platform --js index.cjs --dts index.d.cts",
"build:ts": "tsc",
"format": "run-p format:js format:rs format:toml",
"format:js": "vp fmt .",
"format:toml": "taplo format",
"format:rs": "cargo fmt",
"lint": "vp lint .",
"prepublishOnly": "napi prepublish -t npm",
"test": "ava",
"preversion": "yarn build:debug && git add .",
"version": "napi version",
"prepare": "vp config"
},
"devDependencies": {
"@napi-rs/cli": "^3.5.1",
"@oxc-node/core": "^0.1.0",
"@types/node": "^25.5.0",
"ava": "^8.0.0",
"npm-run-all2": "^8.0.4",
"oxlint-tsgolint": "^0.22.0",
"prettier": "^3.8.1",
"tinybench": "^6.0.0",
"typescript": "^6.0.0",
"vite-plus": "catalog:"
},
"resolutions": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"napi": {
"binaryName": "recording",
"targets": [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"i686-pc-windows-msvc",
"aarch64-pc-windows-msvc",
"x86_64-unknown-linux-gnu"
]
},
"ava": {
"environmentVariables": {
"OXC_TSCONFIG_PATH": "./__test__/tsconfig.json"
},
"extensions": [
"ts"
],
"nodeArguments": [
"--import",
"@oxc-node/core/register"
],
"timeout": "2m",
"workerThreads": false
},
"engines": {
"node": ">= 22.0.0"
},
"packageManager": "yarn@4.14.1"
}