-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.71 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
{
"name": "static",
"version": "1.0.0",
"description": "Polygon static — npm package @polygonlabs/meta plus the static.polygon.technology HTTP endpoint, sharing one source-of-truth JSON tree under packages/meta/network/",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/0xPolygon/static.git"
},
"license": "MIT",
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=24"
},
"scripts": {
"prepare": "husky",
"build": "pnpm -r --if-present run build",
"build:cdn": "bash scripts/assemble-cdn.sh",
"codegen": "pnpm -r --if-present run codegen",
"deploy": "wrangler deploy",
"test": "pnpm -r --if-present run test",
"typecheck": "pnpm -r --if-present run typecheck",
"lint": "concurrently --group --prefix-colors auto 'pnpm:lint:md' 'pnpm:lint:ts' 'pnpm:typecheck' 'prettier --check .'",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:ts": "eslint .",
"format": "pnpm run format:md && pnpm run format:ts && prettier --write .",
"format:md": "markdownlint-cli2 --fix \"**/*.md\"",
"format:ts": "eslint . --fix",
"ci:publish": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@polygonlabs/apps-team-lint": "^2.0.0",
"@tsconfig/node-ts": "^23.6.4",
"@tsconfig/node24": "^24.0.4",
"concurrently": "^9.2.1",
"eslint": "^10.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"husky": "^9.0.0",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.21.0",
"prettier": "^3.0.0",
"wrangler": "^4.78.0"
}
}