-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
58 lines (58 loc) · 1.96 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
{
"name": "@imtbl/imx-example",
"version": "2.0.0",
"repository": "https://github.com/immutable/imx-examples.git",
"description": "Immutable X SDK examples and onboarding scripts",
"author": "Immutable",
"license": "Apache-2.0",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "npm run typecheck && npm run lint:eslint",
"lint:eslint": "eslint --ext .ts,.js .",
"lint:eslint:fix": "eslint --ext .ts,.js --fix .",
"typecheck": "tsc --noEmit",
"onboarding:user-registration": "ts-node -r dotenv/config ./src/onboarding/1-user-registration.ts",
"onboarding:create-collection": "ts-node -r dotenv/config ./src/onboarding/3-create-collection.ts",
"onboarding:add-metadata-schema": "ts-node -r dotenv/config ./src/onboarding/4-add-metadata-schema.ts",
"onboarding:mint": "ts-node -r dotenv/config ./src/onboarding/5-mint-nfts.ts",
"public:get-collection-info": "ts-node -r dotenv/config ./src/public/get-collection-info.ts",
"public:get-assets-info": "ts-node -r dotenv/config ./src/public/get-assets-info.ts"
},
"engines": {
"npm": ">=9.x.x",
"node": ">=18.x.x"
},
"keywords": [
"Immutable",
"Immutable X",
"IMX"
],
"dependencies": {
"@ethersproject/providers": "^5.0.7",
"@ethersproject/wallet": "^5.0.7",
"@imtbl/imlogging": "^1.0.33",
"@imtbl/sdk": "1.18.2",
"@types/node": "^20.11.22",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"axios": "^1.6.7",
"dotenv": "^8.2.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"ts-node": "^10.8.1",
"typescript": "^5.4.3"
},
"publishConfig": {
"access": "public"
}
}