mirror of
https://github.com/kou029w/websri.git
synced 2025-01-18 16:08:16 +00:00
38 lines
938 B
JSON
38 lines
938 B
JSON
{
|
|
"name": "websri",
|
|
"version": "0.0.1",
|
|
"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"
|
|
},
|
|
"type": "module",
|
|
"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.2",
|
|
"release-it": "17.6.0",
|
|
"tsup": "8.2.4",
|
|
"typescript": "5.5.4"
|
|
}
|
|
}
|