-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
{
"name": "rswitch",
"description": "The rswitch library provides a compact and flexible way to implement switch-like functionality in JavaScript. It allows you to define cases and their corresponding actions using an object literal syntax.",
"version": "0.7.0",
"author": "Rashed Iqbal",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/rswitch.es.js",
"require": "./dist/rswitch.umd.js"
}
},
"main": "./dist/rswitch.umd.js",
"module": "./dist/rswitch.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc && vite build",
"test": "jest --verbose false"
},
"repository": {
"type": "git",
"url": "https://github.com/iqbal-rashed/rswitch"
},
"keywords": [
"rswitch",
"switch case",
"switch",
"javascript",
"conditional",
"react",
"node",
"typescript"
],
"bugs": {
"url": "https://github.com/iqbal-rashed/rswitch/issues"
},
"homepage": "https://github.com/iqbal-rashed/rswitch",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.4.0",
"vite-tsconfig-paths": "^4.2.0"
}
}