-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.69 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
{
"name": "xor-encryption",
"version": "1.0.0",
"description": "Encrypt and decrypt string data using the XOR encryption method to make it easier.",
"author": "codev911",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"dist/contracts/*.sol"
],
"license": "MIT",
"scripts": {
"start": "tsx ./lib/index.ts",
"install:solidity": "cd solidity-example && npm install && cd ..",
"test": "jest",
"test:all": "jest && cd solidity-example && npm run test && cd ..",
"build": "rimraf dist && tsup && copyfiles -f ./solidity-example/contracts/libs/XOREncryption.sol ./dist/contracts",
"format": "prettier --write \"solidity-example/contracts/**/*.sol\" \"solidity-example/test/**/*.ts\" \"solidity-example/ignition/**/*.ts\" \"tests/**/*.ts\" \"lib/**/*.ts\""
},
"dependencies": {
"keccak": "^3.0.4",
"crypto": "^1.0.1",
"ethers": "^6.12.1"
},
"devDependencies": {
"@swc/core": "^1.5.7",
"@types/copyfiles": "^2.4.4",
"@types/jest": "^29.5.12",
"@types/keccak": "^3.0.4",
"@types/mocha": ">=9.1.0",
"@types/node": ">=18.0.0",
"copyfiles": "^2.4.1",
"hardhat": "^2.14.0",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.3",
"ts-node": ">=8.0.0",
"tslib": "^2.6.2",
"tsup": "^8.0.2",
"tsx": "^4.10.5",
"typescript": ">=4.5.0"
},
"keywords": [
"xor",
"encryption",
"pre-reveal",
"xor-encryption",
"metadata",
"nft"
],
"repository": {
"type": "git",
"url": "https://github.com/codev911/xor-encryption"
}
}