-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.76 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
{
"name": "@dignetwork/dig-framework-adapters",
"version": "0.1.8",
"private": true,
"description": "DIG framework adapters monorepo — a Vite plugin (@dignetwork/vite-plugin-dig) and a Next.js static-export adapter (@dignetwork/next-plugin-dig) that make DIG a first-class deploy target: a window.chia dev shim during dev, plus a publish step that ships the build output to a DIG capsule via digstore deploy.",
"license": "MIT",
"author": "DIG Network",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/DIG-Network/dig-framework-adapters"
},
"homepage": "https://github.com/DIG-Network/dig-framework-adapters#readme",
"bugs": {
"url": "https://github.com/DIG-Network/dig-framework-adapters/issues"
},
"workspaces": [
"packages/shared",
"packages/*"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"postinstall": "npm run build --workspace=packages/shared",
"typecheck": "npm run typecheck --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"verify": "npm run lint && npm run format:check && npm run typecheck && npm run build && npm test"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@types/node": "^20.14.0",
"c8": "^10.1.3",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.5",
"globals": "^15.15.0",
"prettier": "^3.9.6",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.65.0"
},
"overrides": {
"esbuild": "^0.28.1"
}
}