-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.54 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
57
58
{
"name": "@enalmada/next-secure",
"version": "0.2.4",
"scripts": {
"build": "rm -rf dist && bun build.ts && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly",
"dev": "cd website && bun run dev",
"lint": "biome check --fix --unsafe",
"pre-commit": "bun lint-staged",
"prepare": "husky install",
"release": "bun run build && bunx changeset publish",
"test": "bun run test:unit",
"test:unit": "cross-env NODE_ENV=test vitest",
"type-check": "bun --bun tsc --noEmit"
},
"dependencies": {
"next-safe": "3.5.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.27.9",
"@enalmada/bun-externals": "0.0.7",
"@scaleway/changesets-renovate": "2.1.2",
"@types/bun": "^1.1.11",
"@types/node": "22.7.7",
"cross-env": "7.0.3",
"fixpack": "4.0.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"next": "14.2.15",
"typescript": "5.6.3",
"vitest": "2.1.3"
},
"peerDependencies": {
"next": "^13.5.5 || ^14.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Adam Lane",
"description": "helpers for generating CSP and other security headers",
"keywords": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/Enalmada/next-secure/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enalmada/next-secure.git"
},
"homepage": "https://github.com/Enalmada/next-secure",
"private": false,
"publishConfig": {
"access": "public"
},
"type": "module",
"packageManager": "[email protected]",
"trustedDependencies": ["@biomejs/biome"]
}