-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 KB
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
{
"name": "topaz-node",
"version": "0.0.10",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Topaz Node SDK",
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"@aserto/node-authorizer": "^0.21.0",
"@aserto/node-directory": "^0.33.1",
"@connectrpc/connect": "^2.0.2",
"@connectrpc/connect-node": "^2.0.2"
},
"scripts": {
"build": "rm -rf dist && tsc --build",
"check": "tsc --noEmit",
"detect-unused-exports": "knip --include exports,types,nsExports,nsTypes",
"lint": "eslint src --max-warnings=0",
"prepare": "yarn run build",
"prepack": "NODE_ENV=production yarn build",
"release_prep": "scripts/release_prep.sh",
"release": "scripts/release.sh",
"test": "jest test --coverage --verbose --collectCoverageFrom='./src/**'"
},
"devDependencies": {
"@bufbuild/protobuf": "^2.5.2",
"@eslint/compat": "^1.3.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-perfectionist": "^4.15.0",
"eslint-plugin-prettier": "^5.5.0",
"jest": "30.0.1",
"knip": "^5.61.2",
"pino": "^9.7.0",
"prettier": "^3.5.3",
"pretty-format": "^30.0.1",
"supertest": "^7.1.1",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"packageManager": "yarn@4.9.2"
}