-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "@openstamanager/vite-config",
"version": "1.3.0",
"description": "Vite common config for OpenSTAManager core and modules",
"author": "Maicol Battistini <webmaster@maicol07.it> (https://maicol07.it)",
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/maicol072001/10eur"
},
{
"type": "github",
"url": "https://github.com/sponsors/maicol07"
}
],
"repository": "github:maicol07/openstamanager-vite-config",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "tsc"
},
"keywords": [],
"peerDependencies": {
"autoprefixer": ">=10.4.12",
"deepmerge-ts": "^4.2.2",
"postcss": ">=8.4.18",
"vite": ">=3.1"
},
"devDependencies": {
"@types/node": "^18.11.4",
"autoprefixer": "^10.4.12",
"deepmerge-ts": "^4.2.2",
"postcss": "^8.4.18",
"typescript": "^4.8.4",
"vite": "^3.1"
}
}