-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.27 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
{
"name": "condition-switch",
"description": "a condition switch library for js/ts",
"keywords": [
"js",
"ts",
"condition",
"switch",
"conditional logic",
"utility",
"switch case",
"decision making",
"logic",
"javascript",
"typescript",
"conditional statements"
],
"homepage": "https://github.com/ronny1020/condition-switch#readme",
"bugs": {
"url": "https://github.com/ronny1020/condition-switch/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronny1020/condition-switch.git"
},
"type": "module",
"license": "MIT",
"author": {
"name": "ronny1020"
},
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"version": "0.1.1",
"scripts": {
"build": "tsc && vite build",
"prepublish": "pnpm i && tsc && vitest run && vite build",
"test": "vitest"
},
"devDependencies": {
"@types/node": "^20.14.10",
"prettier": "^3.3.2",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^2.0.2"
}
}