-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.09 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
{
"name": "@pitininja/envious",
"version": "5.1.0",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/pitininja/envious",
"repository": {
"type": "git",
"url": "https://github.com/pitininja/envious"
},
"files": ["./dist", "./LICENSE", "./package.json", "./README.md"],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "[ -d '.husky' ] && husky || true",
"build": "tsc --build --clean tsconfig.build.json && tsc -b ./tsconfig.build.json",
"test": "vitest --run",
"lint": "npx @biomejs/biome check --error-on-warnings && npx tsc --noEmit",
"format": "npx @biomejs/biome check --write --error-on-warnings && npx tsc --noEmit"
},
"dependencies": {
"@sinclair/typebox": "^0.34.14"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^22.10.7",
"@vitest/coverage-istanbul": "^3.0.2",
"husky": "^9.1.7",
"typescript": "^5.7.3",
"vitest": "^3.0.2"
}
}