-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.19 KB
/
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
40
41
42
43
44
45
46
47
48
{
"name": "@livekit/mutex",
"private": false,
"access": "public",
"license": "Apache-2.0",
"version": "1.1.0",
"description": "Tiny mutex helper",
"repository": "git@github.com:livekit/ts-mutex.git",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"sideEffects": false,
"type": "module",
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build",
"lint": "eslint src",
"format:check": "prettier --check .",
"test": "vitest --environment node run",
"test:browser": "vitest --environment happy-dom run",
"test:edge": "vitest --environment edge-runtime run"
},
"devDependencies": {
"@edge-runtime/vm": "^4.0.3",
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.11.0",
"happy-dom": "^15.7.4",
"prettier": "^3.3.3",
"typescript": "~5.0.0",
"typescript-eslint": "^8.9.0",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.4",
"vitest": "^2.1.3"
},
"packageManager": "pnpm@9.2.0"
}