-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 926 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 926 Bytes
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
{
"name": "@etern8/secure",
"version": "0.1.4",
"description": "Механические проверки безопасности для проектов ETERN8 на Next.js: поверхность server actions, права на мутациях, доверие к заголовкам.",
"type": "module",
"license": "UNLICENSED",
"private": false,
"packageManager": "pnpm@9.15.1",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepack": "pnpm build"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"vitest": "^4.1.10"
}
}