-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.62 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
64
65
66
67
{
"name": "@byloth/core",
"version": "2.0.0-rc.7",
"description": "An unopinionated collection of useful functions and classes that I use widely in all my projects. 🔧",
"keywords": [
"Core",
"Collection",
"Classes",
"Functions",
"Utils",
"JavaScript",
"TypeScript",
"Library"
],
"homepage": "https://github.com/Byloth/core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Byloth/core.git"
},
"bugs": {
"url": "https://github.com/Byloth/core/issues"
},
"author": {
"name": "Matteo Bilotta",
"email": "[email protected]",
"url": "https://www.byloth.dev/"
},
"license": "Apache-2.0",
"type": "module",
"files": [
"dist",
"src"
],
"main": "./dist/core.umd.cjs",
"module": "./dist/core.js",
"exports": {
".": {
"import": {
"default": "./dist/core.js",
"types": "./src/index.ts"
},
"require": {
"default": "./dist/core.umd.cjs",
"types": "./src/index.ts"
}
}
},
"types": "./src/index.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc",
"lint": "eslint .",
"test": "vitest",
"prepare": "husky",
"ci": "pnpm install --frozen-lockfile"
},
"devDependencies": {
"@byloth/eslint-config-typescript": "^3.0.3",
"@types/node": "^22.9.0",
"husky": "^9.1.7",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"packageManager": "[email protected]+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}