-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.53 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
{
"author": {
"email": "dario@casertano.name",
"name": "Dario Casertano (DarCas)",
"url": "https://casertano.name"
},
"bugs": {
"url": "https://github.com/DarCas/rollup-sub-resource-integrity/issues"
},
"description": "A zero-dependency Rollup plugin that adds Subresource Integrity (SRI) attributes to HTML files to ensure the integrity of scripts and stylesheets using hashing algorithms like SHA-256, SHA-384, and SHA-512.",
"devDependencies": {
"@types/node": "^22.10.2",
"terser": "^5.37.0",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"homepage": "https://sri.os.darcas.app",
"keywords": [
"javascript",
"open-source",
"rollup",
"security",
"sri",
"subresource-integrity",
"typescript",
"vite-plugin",
"web-security"
],
"license": "MIT",
"main": "./dist/index.min.js",
"name": "@darcas/rollup-sub-resource-integrity",
"peerDependencies": {
"rollup": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DarCas/rollup-sub-resource-integrity"
},
"scripts": {
"build": "rm -rf ./dist && tsc && npm run minify",
"minify": "terser dist/index.js --source-map -c -m -o dist/index.min.js && unlink dist/index.js",
"deploy": "npm run build && npm publish --access public",
"test": "vitest run"
},
"type": "module",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"version": "2.0.3"
}