-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 912 Bytes
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
{
"name": "dapp-factory",
"version": "8.0.0",
"description": "Local tooling for dApp generation and build validation",
"type": "module",
"scripts": {
"generate": "tsx generator/index.ts",
"validate": "tsx validator/index.ts",
"zip": "tsx validator/zip.ts",
"build": "tsc",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"solana",
"web3",
"dapp",
"prompt-generator"
],
"author": "App Factory",
"license": "MIT",
"dependencies": {
"archiver": "^6.0.0",
"handlebars": "^4.7.8",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/archiver": "^6.0.0",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.18",
"tsx": "^4.0.0",
"typescript": "^5.2.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
}
}