-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "create-solana-program",
"version": "0.3.18",
"description": "An easy way to start a Solana program",
"type": "module",
"bin": {
"create-solana-program": "outfile.cjs"
},
"files": [
"locales",
"outfile.cjs",
"template"
],
"engines": {
"node": ">=v20.0.0"
},
"scripts": {
"build": "./scripts/build.mjs",
"lint": "prettier -c .",
"lint:fix": "prettier --write .",
"prepublishOnly": "./scripts/prepublish.mjs",
"snapshot": "pnpm build && ./scripts/snapshot.mjs",
"test": "pnpm snapshot --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solana-program/create-solana-program.git"
},
"keywords": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/solana-program/create-solana-program/issues"
},
"homepage": "https://github.com/solana-program/create-solana-program#readme",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@tsconfig/node20": "^20.1.2",
"@types/eslint": "^8.56.5",
"@types/node": "^20.11.24",
"@types/nunjucks": "^3.2.6",
"@types/prompts": "^2.4.9",
"chalk": "^5.3.0",
"esbuild": "^0.18.20",
"gradient-string": "^2.0.2",
"nunjucks": "^3.2.4",
"prettier": "^3.2.5",
"prompts": "^2.4.2",
"zx": "^7.2.3"
},
"packageManager": "[email protected]"
}