-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.11 KB
/
package.json
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
76
77
78
79
80
81
{
"name": "create-ao-contract",
"version": "1.0.3",
"description": "Create AO Contract",
"author": "pawanpaudel93",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/pawanpaudel93/create-ao-contract/issues"
},
"homepage": "https://github.com/pawanpaudel93/create-ao-contract#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pawanpaudel93/create-ao-contract.git"
},
"keywords": [
"create-ao-contract",
"arweave",
"ao"
],
"type": "module",
"exports": "./dist/index.js",
"bin": {
"create-ao-contract": "dist/index.js"
},
"files": [
"dist",
"template",
"README.md",
"LICENSE",
"CHANGELOG.md",
"package.json"
],
"engines": {
"node": ">=14.16"
},
"scripts": {
"typecheck": "tsc",
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "bun lint --fix",
"format": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path .gitignore --write",
"format:check": "prettier '**/*.{cjs,mjs,ts,tsx,md,json}' --ignore-path .gitignore --check",
"release": "changeset version",
"publish": "bun run build && changeset publish"
},
"dependencies": {
"@clack/core": "^0.3.4",
"@clack/prompts": "^0.7.0",
"adm-zip": "^0.5.14",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"env-paths": "^3.0.0",
"execa": "^9.3.0",
"fs-extra": "^11.2.0",
"node-fetch": "^3.3.2",
"ora": "^8.0.1",
"validate-npm-package-name": "^5.0.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@types/adm-zip": "^0.5.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.19.39",
"@types/validate-npm-package-name": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"glob": "^10.4.3",
"prettier": "^3.3.2",
"tsup": "^6.7.0",
"type-fest": "^3.13.1",
"typescript": "^5.5.3"
},
"packageManager": "[email protected]"
}