-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 890 Bytes
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
{
"name": "vite-plugin-xml-loader",
"version": "1.0.2",
"description": "xml loader plugin for vite",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"vite",
"vite-plugin",
"rollup-plugin",
"xml"
],
"author": "Lorenzo Cao",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"ts-node": "^10.7.0"
},
"dependencies": {
"fast-xml-parser": "^4.0.7"
},
"repository": {
"type": "git",
"url": "https://github.com/lorenzoc25/vite-plugin-xml-loader"
}
}