-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@dignetwork/next-plugin-dig",
"version": "0.1.8",
"description": "A Next.js static-export adapter that makes DIG a first-class deploy target: a window.chia dev shim for `next dev`, plus a publish step that ships the static export (out/) to a DIG capsule via `digstore deploy`, honoring dig.toml. Deploy to a network no host can read, change, or take down — on Chia.",
"license": "MIT",
"author": "DIG Network",
"repository": {
"type": "git",
"url": "https://github.com/DIG-Network/dig-framework-adapters",
"directory": "packages/next-plugin-dig"
},
"homepage": "https://github.com/DIG-Network/dig-framework-adapters/tree/main/packages/next-plugin-dig#readme",
"bugs": {
"url": "https://github.com/DIG-Network/dig-framework-adapters/issues"
},
"keywords": [
"dig",
"dig-network",
"chia",
"next",
"nextjs",
"static-export",
"deploy",
"capsule",
"wallet",
"decentralized"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --test test/*.test.mjs",
"test:coverage": "npm run build && c8 node --test test/*.test.mjs",
"verify": "npm run typecheck && npm run build && npm test",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@dignetwork/dig-adapters-shared": "*",
"@dignetwork/dig-sdk": "^0.2.0"
},
"peerDependencies": {
"next": ">=13"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.14.0",
"c8": "^10.1.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}