-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.65 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.65 KB
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": "laravel-magic-enums",
"version": "3.0.4",
"license": "MIT",
"private": false,
"type": "module",
"exports": {
".": "./dist/index.js",
"./vite": {
"types": "./dist/viteLaravelMagicEnums.d.ts",
"import": "./dist/viteLaravelMagicEnums.js",
"require": "./dist/viteLaravelMagicEnums.cjs"
}
},
"files": [
"dist"
],
"description": "A Laravel package that adds extra power to your PHP enums, and lets you use them in your frontend with type definitions.",
"keywords": [
"laravel",
"php",
"enums"
],
"homepage": "https://github.com/SynergiTech/laravel-magic-enums",
"repository": {
"type": "git",
"url": "git+https://github.com/SynergiTech/laravel-magic-enums.git"
},
"bugs": {
"url": "https://github.com/SynergiTech/laravel-magic-enums/issues"
},
"author": {
"name": "synergitech",
"url": "https://www.npmjs.com/~synergitech"
},
"scripts": {
"build": "vite build",
"build:package": "vite build --mode=package",
"test:unit": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"fmt": "prettier . --check",
"fmt:fix": "prettier --write .",
"ts:check": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.2",
"@vitest/coverage-v8": "^4.1.3",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.7",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.3"
},
"peerDependencies": {
"chokidar": "^4.0.0"
}
}