-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.47 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
{
"name": "@formfunction-hq/formfunction-auction-house",
"version": "0.0.5-alpha.146",
"description": "TypeScript SDK for interacting with Formfunction's auction house program.",
"repository": "git://github.com/formfunction-hq/formfn-auction-house.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "UNLICENSED",
"files": [
"dist"
],
"publishConfig": {
"@formfunction-hq:registry": "https://npm.pkg.github.com"
},
"scripts": {
"prepare": "husky install",
"setup": "./scripts/setup.sh",
"prettier": "prettier --write \"src/**/*.ts\"",
"eslint": "eslint --cache --fix 'src/**/*.ts'",
"lint-check": "prettier --check \"src/**/*.ts\" && eslint --cache 'src/**/*.ts'",
"lint": "yarn prettier && yarn eslint",
"build": "tsc -P tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"build-program": "anchor build && yarn setup",
"test-cargo": "cargo test",
"test-cargo-debug": "RUST_BACKTRACE=1 cargo test -- --nocapture",
"test-unit": "UNIT_TESTS=true jest src/tests/unit/*.test.ts",
"test-program": "./scripts/test.sh",
"test-program-spl": "SPL_TOKEN=true ./scripts/test.sh",
"test-program-debug": "DEBUG=true BLUEBIRD_LONG_STACK_TRACES=1 ./scripts/test.sh",
"test-pnft": "yarn test-program-debug src/tests/programmable-nfts/*.test.ts",
"test": "yarn test-cargo && yarn test-unit && yarn test-program",
"deploy-dev": "./scripts/deploy-dev.sh",
"deploy-test": "./scripts/deploy-test.sh",
"create-address-lookup-table": "ts-node -r tsconfig-paths/register src/address-lookup-table/scripts/createTable.ts",
"print-address-lookup-table": "ts-node -r tsconfig-paths/register src/address-lookup-table/scripts/printTable.ts",
"extend-address-lookup-table": "ts-node -r tsconfig-paths/register src/address-lookup-table/scripts/extendTable.ts",
"modify-program-idl": "ts-node -r tsconfig-paths/register -T src/scripts/modifyProgramIdl.ts",
"lint-program-idl": "ts-node -r tsconfig-paths/register src/scripts/lintProgramIdl.ts",
"dump": "./scripts/solana-program-dump.sh"
},
"dependencies": {
"@formfunction-hq/formfunction-program-shared": "0.0.61",
"@metaplex-foundation/mpl-token-auth-rules": "^1.1.0",
"@msgpack/msgpack": "^2.8.0",
"@solana/spl-token": "^0.3.7",
"bn.js": "^5.2.0",
"buffer-layout": "^1.2.2",
"dayjs": "^1.10.7"
},
"peerDependencies": {
"@metaplex-foundation/mpl-token-metadata": "^2.7.0",
"@project-serum/anchor": "^0.26.0",
"@solana/web3.js": "^1.73.0"
},
"devDependencies": {
"@metaplex-foundation/mpl-token-metadata": "^2.7.0",
"@project-serum/anchor": "^0.26.0",
"@solana/web3.js": "^1.73.0",
"@types/bluebird": "^3.5.36",
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.4.1",
"@types/yargs": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"bluebird": "^3.7.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"npm": "^8.3.0",
"prettier": "^2.6.1",
"tiny-invariant": "^1.3.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tsc-alias": "^1.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.9.3",
"yargs": "^17.6.2"
}
}