forked from lukso-network/lsp-smart-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "@lukso/lsp3-contracts",
"version": "0.15.0-rc.0",
"description": "Package for the LSP3 Profile Metadata standard",
"license": "Apache-2.0",
"author": "",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./artifacts/*": "./artifacts/*",
"./package.json": "./package.json"
},
"files": [
"contracts/**/*.sol",
"!contracts/Mocks/**/*.sol",
"artifacts/*.json",
"dist",
"./README.md"
],
"keywords": [
"LUKSO",
"LSP",
"Blockchain",
"Standards",
"Smart Contracts",
"Ethereum",
"EVM",
"Solidity"
],
"scripts": {
"build": "hardhat compile --show-stack-traces",
"build:js": "unbuild",
"clean": "hardhat clean && rm -Rf dist/",
"format": "prettier --write .",
"lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'"
},
"dependencies": {
"@lukso/lsp2-contracts": "*"
}
}