-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.26 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"$schema": "http://json.schemastore.org/package",
"name": "@castleio/sdk",
"description": "Castle SDK for Node",
"version": "3.1.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"repository": "git@github.com:castle/castle-node.git",
"author": {
"name": "castle.io",
"url": "https://castle.io"
},
"homepage": "https://github.com/castle/castle-node",
"license": "MIT",
"private": false,
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "rimraf dist",
"build": "tsup",
"start": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "jest",
"lint-fix": "eslint --fix --quiet '{src,test}/**/*.{js,ts,tsx}' '*.{js,ts,tsx,mjs}'",
"lint-verify": "eslint '{src,test}/**/*.{js,ts,tsx}' '*.{js,ts,tsx,mjs}'",
"format": "prettier --write '{src,test}/**/*.{js,ts,tsx,yml,yaml,json,md}' '*.{js,ts,tsx,mjs,yml,yaml,json,md}'",
"format:check": "prettier --check '{src,test}/**/*.{js,ts,tsx,yml,yaml,json,md}' '*.{js,ts,tsx,mjs,yml,yaml,json,md}'",
"prepush": "npm run build && npm run lint-fix",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-push": "yarn prepush"
}
},
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@types/jest": "30.0.0",
"@types/node": "24.0.14",
"@typescript-eslint/eslint-plugin": "8.60.1",
"@typescript-eslint/parser": "8.60.1",
"eslint": "9.31.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.5.6",
"express": "5.2.1",
"fetch-mock": "11.1.5",
"husky": "9.1.7",
"jest": "30.4.2",
"mockdate": "3.0.5",
"prettier": "3.8.3",
"rimraf": "6.1.3",
"source-map-support": "0.5.21",
"ts-jest": "29.4.11",
"ts-node": "10.9.2",
"tsup": "8.5.1",
"typescript": "5.8.3"
},
"dependencies": {
"pino": "^9.7.0",
"pino-pretty": "^13.0.0"
}
}