-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.35 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
{
"name": "@lukso/lsp-utils",
"version": "0.0.2",
"description": "A set of TypeScript/JavaScript utils for LUKSO Standard Proposals (LSPs)",
"author": "Daniel Afteni (B00ste)",
"license": "MIT",
"homepage": "https://github.com/lukso-network/lsp-utils#readme",
"bugs": {
"url": "https://github.com/lukso-network/lsp-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukso-network/lsp-utils.git"
},
"files": [
"dist",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"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"
}
},
"scripts": {
"lint": "eslint . --ext .ts",
"prettier": "prettier -w .",
"clean": "rm -rf dist && rm -rf src/typechain",
"build:docs": "typedoc --options typedoc.json && prettier -w ./docs",
"build:types": "bash scripts/generateTypechain.bash",
"build": "npm run clean && npm run lint && npm run build:types && unbuild",
"test:helpers": "hardhat test src/helpers/**/*.test.ts",
"test:IPFS": "hardhat test src/IPFS/**/*.test.ts",
"test:LSP2": "hardhat test src/LSP2/**/*.test.ts",
"test:LSP3": "hardhat test src/LSP3/**/*.test.ts",
"test:LSP4": "hardhat test src/LSP4/**/*.test.ts",
"test:LSP5": "hardhat test src/LSP5/**/*.test.ts",
"test:LSP6": "hardhat test src/LSP6/**/*.test.ts",
"test:LSP12": "hardhat test src/LSP12/**/*.test.ts",
"test:LSP23": "hardhat test src/LSP23/**/*.test.ts",
"test": "hardhat test src/***/**/*.test.ts",
"prepare": "husky install"
},
"dependencies": {
"@erc725/erc725.js": "0.25.0",
"@erc725/smart-contracts": "^7.0.0",
"@lukso/lsp-smart-contracts": "0.15.0",
"@openzeppelin/contracts": "4.9.2",
"assert": "2.1.0",
"ethers": "^6.8.0",
"isomorphic-fetch": "^3.0.0",
"unbuild": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@typechain/ethers-v6": "^0.4.0",
"@types/isomorphic-fetch": "^0.0.38",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"coveralls": "^3.1.0",
"ejs": "^3.1.5",
"eslint": "^7.17.0",
"hardhat": "^2.18.2",
"husky": "^8.0.0",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.3.2",
"vite": "^4.4.11",
"vite-plugin-dts": "^3.6.0"
},
"keywords": [
"javascript",
"typecript",
"lsp-utils",
"lsp utils",
"lsp-utilities",
"lsp utilities",
"lip-utils",
"lip utils",
"lip-utilities",
"lip utilities",
"lukso-utils",
"lukso utils",
"lukso-utilities",
"lukso utilities",
"lukso",
"lsps",
"lsp",
"lips",
"lip"
]
}