-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.34 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
{
"name": "@toknwrks/regen-compute-react",
"version": "0.1.0",
"description": "React components for Regenerative Compute — ecological credit retirement UI for AI applications",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./dashboard": {
"import": "./dist/dashboard/index.js",
"types": "./dist/dashboard/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"regen-network",
"ecological-credits",
"regenerative-ai",
"react",
"nextjs",
"climate",
"components"
],
"author": "ToknWrks",
"license": "Apache-2.0",
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"@toknwrks/regen-compute-client": "^0.1.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/ToknWrks/regen-compute-react.git"
},
"homepage": "https://compute.regen.network/developers"
}