-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.11 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vite-plugin-sri-gen",
"version": "1.7.4",
"description": "A Vite plugin to auto-generate Subresource Integrity (SRI) hashes.",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:cov": "vitest run --coverage --coverage.reporter=text --coverage.reporter=html --coverage.reporter=lcov",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"files": [
"dist/**",
"README.md",
"LICENSE*"
],
"keywords": [
"vite",
"subresource",
"integrity",
"sri",
"content",
"security",
"policy",
"csp",
"plugin",
"vite-plugin",
"vite-plugin-sri",
"vite-sri",
"subresource-integrity",
"integrity-hash",
"sha256",
"sha384",
"sha512",
"modulepreload",
"ssr",
"ssg",
"spa",
"mpa",
"prerender",
"cdn",
"web-security",
"content-security-policy"
],
"homepage": "https://rbonestell.com/vite-plugin-sri-gen/",
"bugs": {
"url": "https://github.com/rbonestell/vite-plugin-sri-gen/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rbonestell/vite-plugin-sri-gen.git"
},
"author": {
"name": "Bobby Bonestell",
"url": "https://rbonestell.com"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"peerDependencies": {
"vite": ">=4.0.0"
},
"overrides": {
"vitepress": {
"vite": "^6.4.2"
}
},
"dependencies": {
"parse5": "^8.0.0"
},
"devDependencies": {
"@types/node": "^22.7.9",
"@types/parse5": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitest/coverage-v8": "^4.1.11",
"c8": "^10.1.3",
"eslint": "^9.32.0",
"mermaid": "^11.15.0",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^8.1.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^4.1.11"
}
}