-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.56 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
74
75
76
77
78
79
80
{
"name": "@userfrosting/sprinkle-admin",
"version": "6.0.0",
"type": "module",
"description": "Admin Sprinkle for UserFrosting 6",
"funding": "https://opencollective.com/userfrosting",
"license": "MIT",
"author": "Alexander Weissman (https://alexanderweissman.com/)",
"contributors": [
"Alexander Weissman (https://alexanderweissman.com/)",
"Louis Charette (https://bbqsoftwares.com/)",
"Jordan Mele <SiliconSoldier@outlook.com.au> (https://djmm.me/)"
],
"keywords": [
"UserFrosting",
"Admin panel",
"Sprinkle"
],
"homepage": "https://github.com/userfrosting/sprinkle-admin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/userfrosting/sprinkle-admin.git"
},
"bugs": {
"url": "https://github.com/userfrosting/UserFrosting/issues"
},
"exports": {
".": {
"userfrosting:monorepo": "./app/assets/index.ts",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./components": {
"userfrosting:monorepo": "./app/assets/components/index.ts",
"import": "./dist/components.js",
"types": "./dist/components/index.d.ts"
},
"./composables": {
"userfrosting:monorepo": "./app/assets/composables/index.ts",
"import": "./dist/composables.js",
"types": "./dist/composables/index.d.ts"
},
"./interfaces": {
"userfrosting:monorepo": "./app/assets/interfaces/index.ts",
"import": "./dist/interfaces.js",
"types": "./dist/interfaces/index.d.ts"
},
"./routes": {
"userfrosting:monorepo": "./app/assets/routes/index.ts",
"import": "./dist/routes.js",
"types": "./dist/routes/index.d.ts"
},
"./views": {
"userfrosting:monorepo": "./app/assets/views/index.ts",
"import": "./dist/views.js",
"types": "./dist/views/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist/",
"app/schema/"
],
"engines": {
"node": ">= 20"
},
"peerDependencies": {
"@userfrosting/sprinkle-account": "^6.0.0-beta",
"@userfrosting/sprinkle-core": "^6.0.0-beta",
"axios": "^1.16.0",
"limax": "^4.2.1",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"vue": "^3.4.21",
"vue-router": "^4.2.4"
},
"scripts": {
"build": "vite build"
}
}