-
Notifications
You must be signed in to change notification settings - Fork 186
/
package.json
102 lines (102 loc) · 3.22 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@metaplex-foundation/js",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"description": "Metaplex JavaScript SDK",
"keywords": [
"nft",
"metaplex",
"solana",
"blockchain"
],
"author": "Metaplex Maintainers <[email protected]>",
"homepage": "https://metaplex.com",
"repository": {
"url": "https://github.com/metaplex-foundation/js.git"
},
"scripts": {
"clean": "turbo run clean --filter=[origin/main]",
"clean:all": "turbo run clean",
"build": "turbo run build --filter=[origin/main]",
"build:all": "turbo run build",
"test": "turbo run test --filter=[origin/main]",
"test:all": "turbo run test",
"test:filter": "CI=1 ./infra/run-filtered-tests.sh",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write packages/",
"docs": "typedoc",
"docs:deploy": "pnpm run docs && gh-pages --dist docs --dotfiles",
"amman:start": "DEBUG='amman:(info|error|debug)' CI=1 amman start",
"amman:stop": "amman stop",
"packages:new": "node infra/generate-new-package.mjs",
"packages:change": "changeset",
"packages:version": "changeset version",
"packages:publish": "turbo run lint build && changeset publish"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@changesets/cli": "^2.24.4",
"@identity.com/solana-gateway-ts": "^0.9.0",
"@metaplex-foundation/amman": "^0.12.0",
"@metaplex-foundation/amman-client": "^0.2.2",
"@metaplex-foundation/beet": "^0.7.1",
"@metaplex-foundation/beet-solana": "^0.4.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-terser": "^0.2.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/bn.js": "^5.1.1",
"@types/debug": "^4.1.7",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/mime": "^2.0.3",
"@types/node-fetch": "^2.6.2",
"@types/sinon": "^10.0.13",
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-plugin-module-resolver": "^4.1.0",
"depcheck": "^1.4.3",
"esbuild": "^0.15.14",
"esbuild-runner": "^2.2.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-plugin": "^5.0.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-class-members": "^1.15.2",
"gh-pages": "^4.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.72.0",
"rollup-plugin-polyfill-node": "^0.9.0",
"sinon": "^13.0.1",
"spok": "^1.4.3",
"tap-spec": "^5.0.0",
"tape": "^5.5.2",
"tsc-alias": "^1.7.0",
"turbo": "^1.9.3",
"typedoc": "^0.23.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=16.0"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"packageManager": "[email protected]"
}