-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
49
50
51
52
53
54
55
56
57
58
{
"name": "vite-plugin-json5",
"version": "1.1.6",
"description": "Plugin for allowing .json5 and .jsonc files to be loaded.",
"author": {
"name": "Tim van Herwijnen",
"url": "https://github.com/sneakylenny"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"lintfix": "eslint src/** --ignore-path .gitignore --fix",
"dev": "vite dev ./playground",
"test": "vitest",
"build": "tsc -p tsconfig.prod.json"
},
"keywords": [
"vite",
"vite-plugin",
"json5",
"jsonc",
"json"
],
"repository": {
"type": "git",
"url": "https://github.com/sneakylenny/vite-plugin-json5"
},
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.3",
"json5": "^2.2.3"
},
"devDependencies": {
"@rollup/pluginutils": "^5.1.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"happy-dom": "^15.11.7",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vitest": "^2.1.8",
"vue": "^3.5.13"
}
}