-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.26 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
{
"name": "@vistaremote/shared",
"version": "0.1.0",
"description": "VistaRemote shared types, constants, and validators",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"test": "rstest",
"test:watch": "rstest -w",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "node ../tooling/scripts/setup-husky.mjs"
},
"dependencies": {
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"husky": "^9.1.7",
"@rslib/core": "^0.21.5",
"@rstest/adapter-rslib": "^0.10.2",
"@rstest/core": "^0.10.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@9.15.0",
"repository": {
"type": "git",
"url": "https://github.com/VistaRemote/shared.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
}
}