-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.6 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
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
{
"name": "meta-assets-pluts",
"version": "0.0.0",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "commonjs",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rm -rf ./dist && tsc --project ./tsconfig.json && tsc-alias -p ./tsconfig.json",
"build:light": "tsc --project ./tsconfig.json && tsc-alias -p ./tsconfig.json",
"buidl": "npm run build",
"ci": "npm run test && npm run build",
"start": "npm run compile",
"compile": "npm run build && node dist/scripts/compileContracts.js",
"createAccountTx": "npm run build && node dist/scripts/createAccountTx.js",
"mintFrezeableTx": "npm run build && node dist/scripts/mintFrezeableTx.js",
"transferFstToSndTx": "npm run build && node dist/scripts/transferFstToSndTx.js",
"transferFrozen": "npm run build && node dist/scripts/transferFrozen.js",
"changeStateTx": "npm run build && node dist/scripts/changeStateTx.js",
"printContractsHex": "npm run build && node dist/scripts/printContractsHex.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"cardano",
"plutus",
"smart contract",
"smart-contract",
"smart contracts",
"smart-contracts",
"transaction",
"blockchain",
"block chain",
"block-chain",
"offchain",
"onchain",
"ada",
"ADA",
"dApp"
],
"author": "Michele Nuzzi",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/HarmonicLabs/plu-ts.git"
},
"bugs": {
"url": "https://github.com/HarmonicLabs/plu-ts/issues"
},
"homepage": "https://github.com/HarmonicLabs/plu-ts#readme",
"dependencies": {
"@harmoniclabs/blockfrost-pluts": "^0.1.3",
"@harmoniclabs/crypto": "^0.1.0",
"@harmoniclabs/obj-utils": "^1.0.0",
"@harmoniclabs/plu-ts": "^0.6.5",
"@harmoniclabs/plutus-data": "^1.0.0",
"@harmoniclabs/uint8array-utils": "^1.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@harmoniclabs/plutus-machine": "^1.0.3",
"@types/jest": "^28.1.4",
"@types/node": "^18.14.6",
"@types/ws": "^8.5.5",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"tsc-alias": "^1.7.1",
"typescript": "^4.6.3"
},
"funding": "https://github.com/sponsors/HarmonicLabs"
}