-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
63
{
"name": "@ugursahinkaya/generic-router",
"type": "module",
"version": "0.1.0",
"license": "GPL-3.0 or Commerical",
"description": "",
"author": "Uğur Şahinkaya <ugur@sahinkaya.xyz>",
"contributors": [
"Uğur Şahinkaya <ugur@sahinkaya.xyz>",
"Yusuf Kandemir <yusuf.kandemir@outlook.com.tr>"
],
"homepage": "https://github.com/ugursahinkaya/generic-router#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ugursahinkaya/generic-router.git"
},
"bugs": "https://github.com/ugursahinkaya/generic-router/issues",
"keywords": [],
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.node.js",
"default": "./dist/index.js",
"umd": "./dist/index.umd.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"packageManager": "pnpm@9.4.0",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --fix",
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "5.5.2"
},
"engines": {
"node": "18"
},
"dependencies": {
"@ugursahinkaya/shared-types": "0.1.0",
"@ugursahinkaya/logger": "0.1.2"
}
}