forked from rmrk-team/rmrk-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.78 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.78 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "rmrk-tools",
"version": "0.1.23",
"description": "Suite of libraries implementing RMRK.app specs",
"repository": {
"type": "git",
"url": "https://github.com/Swader/rmrk-tools"
},
"main": "dist/index.cjs",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs"
},
"files": [
"dist",
"browser",
"dist-cli"
],
"scripts": {
"build": "tsc && yarn build:es && yarn build:cjs && yarn build:browser && yarn build:cli",
"build:es": "rollup --config ./config/rollup.js",
"build:cjs": "rollup --config ./config/rollup-cjs.js",
"build:umd": "webpack --config ./config/webpack.config.umd.js",
"build:polkadot-browser": "webpack --config ./config/webpack.config.polkadot-umd.js",
"build:browser": "yarn build:umd && yarn build:polkadot-browser",
"build:cli": "tsc --project tsconfig.cli-dist.json",
"clean": "rm -rf build",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"cli:fetch": "ts-node --project tsconfig.cli.json cli/fetch.ts",
"cli:consolidate": "ts-node --project tsconfig.cli.json cli/consolidate",
"cli:seed": "ts-node --project tsconfig.cli.json cli/seed",
"cli:getevents": "ts-node --project tsconfig.cli.json cli/getevents",
"cli:validate": "ts-node --project tsconfig.cli.json src/validate",
"cli:run-listener": "ts-node --project tsconfig.cli.json cli/run-listener.ts",
"cli:metadata": "ts-node --project tsconfig.cli.json cli/metadata.ts",
"test": "jest --silent",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageDirectory='coverage'",
"prepublishOnly": "yarn build"
},
"bin": {
"rmrk-tools-fetch": "./dist-cli/cli/fetch.js",
"rmrk-tools-consolidate": "./dist-cli/cli/consolidate.js",
"rmrk-tools-seed": "./dist-cli/cli/seed.js",
"rmrk-tools-validate": "./dist-cli/cli/validate.js",
"rmrk-tools-metadata": "./dist-cli/cli/metadata.js"
},
"author": "Bruno Skvorc <swader@hey.com>",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-typescript": "^7.13.0",
"@pinata/sdk": "^1.1.13",
"@polkadot/api": "^4.14.1",
"@polkadot/extension-dapp": "^0.38.5",
"@polkadot/keyring": "^6.8.1",
"@polkadot/util-crypto": "^6.8.1",
"@polkadot/x-randomvalues": "^6.8.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-strip": "^2.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"arg": "^5.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"ipfs-core": "^0.5.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"process": "^0.11.10",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.3",
"ts-loader": "^8.0.17",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"chalk": "^4.1.0",
"isomorphic-fetch": "^3.0.0",
"it-all": "^1.0.5",
"superstruct": "^0.14.2",
"uint8arrays": "^2.1.3",
"winston": "^3.3.3"
},
"peerDependency": {
"@polkadot/api": "^4.x",
"@polkadot/extension-dapp": "^0.38.x",
"@polkadot/keyring": "^6.x",
"@polkadot/util-crypto": "^6.x",
"@polkadot/util": "^6.x"
}
}