-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.34 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
55
56
{
"name": "owasp",
"version": "1.2.0",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Quinn Turner"
},
"homepage": "https://github.com/quinnturner/owasp-js#readme",
"bugs": {
"url": "https://github.com/quinnturner/owasp-js/issues"
},
"repository": "github:quinnturner/owasp-js",
"keywords": ["owasp", "logging", "security"],
"exports": {
"./dom": {
"import": {
"types": "./dom/index.d.ts",
"default": "./dom/index.js"
},
"require": {
"types": "./dom/index.d.cts",
"default": "./dom/index.cjs"
}
},
"./vocab": {
"import": {
"types": "./vocab/index.d.ts",
"default": "./vocab/index.js"
},
"require": {
"types": "./vocab/index.d.cts",
"default": "./vocab/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": ["dom", "vocab"],
"scripts": {
"check": "biome check --write ./src",
"build": "tsup --config tsup.config.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@happy-dom/global-registrator": "^14.12.3",
"bun-types": "^1.1.21",
"tsup": "^8.2.4",
"type-fest": "^4.23.0",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"trustedDependencies": ["@biomejs/biome", "esbuild"]
}