-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.74 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
64
65
66
67
68
69
70
71
72
73
{
"name": "@lattice-php/api-reference",
"version": "0.55.0",
"description": "Interactive OpenAPI reference component with request playground, for Lattice apps or any React frontend.",
"license": "MIT",
"author": "Manuel Christlieb <manuel@christlieb.eu>",
"type": "module",
"homepage": "https://latticephp.com",
"repository": {
"type": "git",
"url": "git+https://github.com/lattice-php/lattice.git",
"directory": "packages/api-reference"
},
"bugs": {
"url": "https://github.com/lattice-php/lattice/issues"
},
"keywords": [
"openapi",
"api-reference",
"react",
"laravel",
"lattice"
],
"sideEffects": [
"**/*.css"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./css": "./dist/api-reference.css",
"./plugin": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"dist-standalone"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"build:plugin": "npm run build",
"build:sprite": "node scripts/generate-sprite.mjs",
"build:standalone": "vite build --mode standalone",
"prepack": "npm run build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@lattice-php/core": "0.55.0",
"@lattice-php/form": "0.55.0",
"@lattice-php/ui": "0.55.0"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@lattice-php/vite-svg-sprite": "^0.3.0"
}
}