-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.39 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "safers",
"version": "0.1.0-alpha.1",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/types/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/es/index.js",
"types": "./dist/types/index.d.ts"
}
},
"sideEffects": false,
"files": [
"dist"
],
"description": "Safely convert to the desired data and error-free refine values.",
"keywords": [
"safely-convert",
"safely-transform",
"error-free",
"refinement",
"type-safe",
"predictability",
"stability"
],
"author": {
"name": "chkim116",
"email": "kormelon@gmail.com"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"prebuild": "rm -rf dist",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@vitest/coverage-v8": "^0.34.6",
"glob": "^10.3.10",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6"
},
"repository": {
"type": "git",
"url": "https://github.com/chkim116/safers"
},
"bugs": {
"url": "https://github.com/chkim116/safers/issues"
},
"homepage": "https://github.com/chkim116/safers#readme"
}