-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1017 Bytes
/
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
{
"name": "@socketsecurity/utils",
"private": true,
"version": "1.0.0",
"workspaces": [
"workspaces/*"
],
"license": "MIT",
"description": "Utilities for Socket codebases",
"author": {
"name": "Socket Inc",
"email": "[email protected]",
"url": "https://socket.dev"
},
"homepage": "https://github.com/SocketDev/socket-utils-js",
"repository": {
"type": "git",
"url": "https://github.com/SocketDev/socket-utils-js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "rm -rf shared/tsbuildinfo && npm run build --workspaces",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"pony-cause": "^2.1.10"
},
"devDependencies": {
"@socketsecurity/eslint-config": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"typescript": "^5.3.3"
}
}