-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 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": "@murphis/onchainkit-sdk",
"version": "0.1.0",
"description": "Murphy - Tool for creating and managing components in your project",
"main": "dist/index.js",
"bin": {
"murphis": "./dist/cli/index.js"
},
"scripts": {
"build": "ts-node scripts/build.ts",
"dev": "tsc -w",
"start": "node dist/cli/index.js",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"murphy",
"sdk",
"components",
"utilities",
"toolkit",
"cli",
"template"
],
"author": "SaitamaCoder",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Murphis/onchainkit-sdk.git"
},
"homepage": "https://github.com/Murphis/onchainkit-sdk",
"bugs": {
"url": "https://github.com/Murphis/onchainkit-sdk/issues"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.1",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.80",
"@types/prompts": "^2.4.2",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"jest": "^29.3.1",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^4.9.4"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}