-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 926 Bytes
/
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
{
"name": "@apility/vite-plugin-dev-manifest",
"version": "2.0.0",
"description": "A vite plugin to be used with Backend Integration for development.",
"scripts": {
"build": "tsc && vite build"
},
"files": [
"dist"
],
"type": "module",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/apility/vite-plugin-dev-manifest.git"
},
"keywords": [
"vite",
"dev",
"manifest"
],
"author": "Cathrine Vaage",
"license": "MIT",
"bugs": {
"url": "https://github.com/apility/vite-plugin-dev-manifest/issues"
},
"homepage": "https://github.com/apility/vite-plugin-dev-manifest#readme",
"devDependencies": {
"@types/node": "^20.10.6",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.7.0"
}
}