-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "@prozilla-os/app-center",
"description": "A ProzillaOS application for browsing and installing applications.",
"version": "1.0.9",
"homepage": "https://os.prozilla.dev/app-center",
"author": {
"name": "Prozilla",
"email": "business@prozilla.dev",
"url": "https://prozilla.dev/"
},
"funding": "https://ko-fi.com/prozilla",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"scripts": {
"build": "tsc && vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prozilla-os/ProzillaOS.git",
"directory": "packages/apps/app-center"
},
"license": "MIT",
"dependencies": {
"@prozilla-os/core": "workspace:*",
"react": "^18.3.1"
},
"devDependencies": {
"@prozilla-os/dev-tools": "workspace:*",
"@types/node": "^20.14.5",
"@types/react": "^18.3.3",
"@vitejs/plugin-react-swc": "^3.7.0",
"typescript": "^5.5.4",
"vite": "^5.4.8",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-lib-inject-css": "^2.1.1"
},
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}