-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 KB
/
package.json
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
{
"name": "websri",
"version": "1.0.0",
"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": "pkgroll",
"prepublishOnly": "pkgroll",
"test": "tsx --test $(find test -type f)",
"release": "release-it --"
},
"devDependencies": {
"@release-it/keep-a-changelog": "5.0.0",
"@types/node": "22.10.3",
"pkgroll": "2.6.0",
"release-it": "17.10.0",
"tsx": "4.19.2",
"typescript": "5.6.2"
}
}