websri/package.json

54 lines
1.2 KiB
JSON
Raw Normal View History

2024-09-03 03:14:59 +09:00
{
2024-09-03 03:57:12 +09:00
"name": "websri",
2024-09-03 00:58:03 +00:00
"version": "0.0.3",
2024-09-03 03:57:12 +09:00
"description": "A universal Subresource Integrity (SRI) utility for Node.js, browsers, Cloudflare Workers, Deno, Bun, and other web-compatible runtimes.",
2024-09-03 03:14:59 +09:00
"license": "MIT",
"author": "Kohei Watanabe <nebel@fogtype.com>",
"repository": {
"type": "git",
2024-09-03 03:57:12 +09:00
"url": "https://github.com/kou029w/websri.git"
2024-09-03 03:14:59 +09:00
},
2024-09-05 19:36:53 +09:00
"keywords": [
"browser",
"bun",
"cloudflare",
"cloudflare-workers",
"deno",
"hashing",
"integrity",
"nodejs",
"security",
"sri",
"subresource-integrity",
"typescript"
],
2024-09-03 03:14:59 +09:00
"type": "module",
2024-09-03 08:24:30 +09:00
"types": "dist/index.d.ts",
2024-09-03 03:14:59 +09:00
"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.5.4",
2024-09-03 03:14:59 +09:00
"release-it": "17.6.0",
"tsup": "8.2.4",
"typescript": "5.5.4"
}
}