forked from trezy/next-safe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "next-safe-ts",
"version": "22.1.2",
"private": false,
"author": "Anton Frattaroli",
"license": "BSD-3-Clause",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "npm run clean && tsc && rimraf dist/tests",
"clean": "rimraf dist && rimraf coverage",
"publish-package": "npm run clean && npm ci && npm run build && npm publish",
"test": "npm run lint && vitest run --coverage",
"lint": "npm run clean && eslint . --max-warnings=0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "5.2.1",
"@types/node": "22.10.5",
"@vitest/coverage-v8": "2.1.8",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-security": "3.0.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"typescript": "5.7.2",
"typescript-eslint": "8.19.0",
"vite": "6.0.7",
"vitest": "2.1.8"
},
"repository": {
"type": "git",
"url": "https://github.com/frattaro/next-safe.git"
},
"files": [
"dist"
]
}