-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.66 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.66 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
{
"name": "@api3/ois",
"license": "MIT",
"version": "3.0.0",
"private": false,
"main": "dist/src/index",
"types": "dist/src/index",
"repository": {
"type": "git",
"url": "https://github.com/api3dao/ois"
},
"files": [
"dist"
],
"packageManager": "pnpm@10.26.2",
"scripts": {
"build": "pnpm run clean && pnpm run compile",
"changeset": "changeset",
"changeset:check": "changeset status --since=origin/main",
"changeset:empty": "changeset --empty",
"changeset:version": "changeset version && pnpm run version",
"clean": "rimraf -g *.tsbuildinfo ./dist *.tgz",
"compile": "tsc --build tsconfig.json",
"lint:eslint": "eslint --cache . --ext .js,.ts",
"lint:prettier:fix": "prettier --write \"./**/*.{js,ts,md,yml}\"",
"lint:prettier": "prettier --check \"./**/*.{js,ts,md,yml}\"",
"lint:tsc": "pnpm run compile",
"lint": "pnpm run lint:prettier && pnpm run lint:tsc && pnpm run lint:eslint",
"prepare": "node .husky/install.mjs",
"version": "pnpm run update-fixtures && pnpm test && git add --all",
"test:watch": "jest --watch",
"test": "jest",
"update-fixtures": "ts-node --transpileOnly ./dev-scripts/update-fixtures.ts"
},
"devDependencies": {
"@api3/eslint-plugin-commons": "^3.1.1",
"@changesets/cli": "^2.29.8",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.23",
"@types/node": "^20.19.24",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"lodash": "^4.17.23",
"zod": "^4.3.6"
}
}