websri/package.json

55 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": "pkgroll",
"prepublishOnly": "pkgroll",
2024-10-02 20:06:07 +09:00
"test": "tsx --test $(find test -type f)",
2024-09-03 03:14:59 +09:00
"release": "release-it --"
},
"devDependencies": {
"@release-it/keep-a-changelog": "5.0.0",
"@types/node": "22.7.4",
"pkgroll": "2.5.0",
2024-09-03 03:14:59 +09:00
"release-it": "17.6.0",
"tsx": "4.19.1",
2024-10-01 10:43:29 +00:00
"typescript": "5.6.2"
2024-09-03 03:14:59 +09:00
}
}