-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.8 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
{
"name": "@ar.io/wayfinder-monorepo",
"version": "1.0.0",
"description": "WayFinder monorepo containing the Chrome extension, core library, and React components",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"experimental/*"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.29.4",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"c8": "^10.1.3",
"changesets": "^1.0.2",
"eslint": "^9.25.1",
"eslint-plugin-header": "^3.1.1",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"tsx": "^4.20.3",
"typescript": "^5.4.5",
"viem": "^2.38.6"
},
"scripts": {
"test": "npm run test --workspaces",
"clean": "rimraf packages/*/dist",
"build": "npm run build --workspaces",
"version": "npm run build && npx changeset version && npm run lint:fix && git add .",
"publish": "npm run build && npx changeset publish",
"publish:alpha": "npx changeset pre enter alpha || echo 'Already in pre mode, skipping' && npm run version && npm run publish",
"publish:main": "npx changeset pre exit || echo 'Not in pre mode, skipping pre exit' && npm run version && npm run publish",
"lint:fix": "biome check --write --unsafe && eslint --fix packages/*/src",
"lint:check": "biome check --unsafe && eslint packages/*/src",
"format:fix": "biome format --write",
"format:check": "biome format",
"verify": "tsx scripts/verify.ts",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ar-io/wayfinder.git"
},
"keywords": [],
"author": "Permanent Data Solutions, Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ar-io/wayfinder/issues"
},
"homepage": "https://github.com/ar-io/wayfinder#readme"
}