mirror of
https://github.com/kou029w/websri.git
synced 2025-01-18 16:08:16 +00:00
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "websri",
|
|
"version": "0.0.3",
|
|
"description": "A universal Subresource Integrity (SRI) utility for Node.js, browsers, Cloudflare Workers, Deno, Bun, and other web-compatible runtimes.",
|
|
"license": "MIT",
|
|
"author": "Kohei Watanabe <nebel@fogtype.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/kou029w/websri.git"
|
|
},
|
|
"keywords": [
|
|
"browser",
|
|
"bun",
|
|
"cloudflare",
|
|
"cloudflare-workers",
|
|
"deno",
|
|
"hashing",
|
|
"integrity",
|
|
"nodejs",
|
|
"security",
|
|
"sri",
|
|
"subresource-integrity",
|
|
"typescript"
|
|
],
|
|
"type": "module",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"prepublishOnly": "tsup",
|
|
"test": "tsup && node --test",
|
|
"release": "release-it --"
|
|
},
|
|
"devDependencies": {
|
|
"@release-it/keep-a-changelog": "5.0.0",
|
|
"@types/node": "22.7.4",
|
|
"release-it": "17.6.0",
|
|
"tsup": "8.2.4",
|
|
"typescript": "5.6.2"
|
|
}
|
|
}
|