-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 977 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 977 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
35
36
37
38
{
"name": "@code4rena/typed-client",
"version": "1.3.6",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./build": "./lib/build/index.js"
},
"types": "lib/index.d.ts",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"scripts": {
"clean": "rm -f lib/*.js lib/*.d.ts lib/**/*.js lib/**/*.d.ts",
"test": "node --env-file=.env.test --test",
"posttest": "npm run lint",
"lint": "tsc && eslint .",
"prelint": "node --env-file=.env.test bin/generate-test-fixture.ts",
"prepack": "tsc -p tsconfig.build.json",
"postpublish": "npm run clean"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.26.0",
"@hapi/hapi": "^21.4.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/node": "^22.15.17",
"eslint": "^9.26.0",
"joi": "^17.13.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1"
},
"type": "module"
}