forked from solana-nft-programs/squads-program-upgrade
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "squads-program-upgrade",
"version": "0.5.0",
"private": true,
"description": "squads-program-upgrade solana deploy action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "export NODE_OPTIONS=--openssl-legacy-provider && ncc build --source-map --license licenses.txt --target es2020",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"repository": "git@github.com:cardinal-labs/squads-program-upgrade.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Jeremy Bogle <jeremy@cardinal.so>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@coral-xyz/anchor": "0.28.0",
"@helium/spl-utils": "^0.9.33",
"@solana/web3.js": "^1.91.1",
"@sqds/multisig": "^2.1.4"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vercel/ncc": "^0.36.1",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-jest": "^25.3.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "2.5.1",
"ts-jest": "^29.3.1",
"typescript": "^5.2.2"
},
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}