-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.1 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.1 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "create-solana-dapp",
"version": "4.8.2",
"description": "The fastest way to create Solana apps",
"repository": {
"name": "solana-foundation/create-solana-dapp",
"type": "git",
"url": "https://github.com/solana-foundation/create-solana-dapp"
},
"homepage": "https://github.com/solana-foundation/create-solana-dapp#readme",
"bugs": {
"url": "https://github.com/solana-foundation/create-solana-dapp/issues"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"create-solana-dapp": "./dist/bin/index.cjs"
},
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"build:watch": "unbuild --watch",
"dev": "vitest dev",
"docker:build": "docker build -t create-solana-dapp:latest .",
"docker:run": "docker run --rm --name create-solana-dapp -v \"${PWD}/dist:/workspace/dist\" -it create-solana-dapp:latest",
"lint": "eslint .",
"lint:fix": "automd && eslint . --fix",
"prepublishOnly": "pnpm pkg delete devDependencies",
"publish-impl": "npm view $npm_package_name@$npm_package_version > /dev/null 2>&1 || pnpm publish --tag ${PUBLISH_TAG:-latest} --access public --no-git-checks",
"publish-packages": "pnpm prepublishOnly && pnpm publish-impl",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@types/mock-fs": "^4.13.4",
"@types/node": "^24.3.1",
"@types/semver": "^7.7.1",
"@types/update-notifier": "^6.0.8",
"@vitest/coverage-v8": "^3.2.4",
"automd": "^0.4.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-unjs": "^0.5.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-sort": "^4.0.0",
"lefthook": "^1.12.4",
"memfs": "^4.39.0",
"mock-fs": "^5.5.0",
"pkg-pr-new": "^0.0.59",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"unbuild": "^3.6.1",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.15.1",
"pnpm": {
"onlyBuiltDependencies": [
"lefthook"
]
},
"dependencies": {
"@clack/prompts": "0.7.0",
"commander": "14.0.0",
"giget": "2.0.0",
"is-in-ci": "2.0.0",
"picocolors": "1.1.1",
"semver": "7.7.2",
"update-notifier": "7.3.1",
"zod": "4.1.5"
},
"contributors": [
{
"name": "Joe Caulfield",
"url": "https://github.com/jpcaulfi"
},
{
"name": "Jacob Creech",
"url": "https://github.com/jacobcreech"
},
{
"name": "Nick Frostbutter",
"url": "https://github.com/nickfrosty"
},
{
"name": "Bram Borggreve",
"url": "https://github.com/beeman"
}
],
"keywords": [
"solana",
"next",
"react",
"web3",
"blockchain",
"nft"
]
}