-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 790 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 790 Bytes
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
{
"name": "sniffly",
"version": "1.0.2",
"author": "Nebulaevo",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "A lightweight TypeScript utility library for performing common type-safe value checks with type narrowing",
"keywords": ["validation", "value-validation", "type-guards", "type-checking", "dependency-free", "sniffly"],
"repository": {
"type": "git",
"url": "https://github.com/Nebulaevo/sniffly.git"
},
"scripts": {
"test": "vitest",
"build": "tsc --build --clean && tsc",
"prepare": "npm run build"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}