-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "@lukso/lsp14-contracts",
"version": "0.15.0-rc.0",
"description": "Package for the LSP14 Ownable 2 Step 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": "eslint . --ext .ts,.js",
"lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'"
},
"dependencies": {
"@erc725/smart-contracts": "^7.0.0",
"@lukso/lsp1-contracts": "*"
}
}