forked from warp-contracts/warp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.66 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.66 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "warp-contracts",
"version": "1.1.5",
"description": "An implementation of the SmartWeave smart contract protocol.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"./esm": "bundles/esm.bundle.js",
"./web": "bundles/web.bundle.js"
},
"sideEffects": false,
"engines": {
"node": ">=16.5"
},
"scripts": {
"build:cjs": "tsc -b tsconfig.json && tsc-alias -p tsconfig.json",
"build:esm": "tsc -b tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"build:types": "tsc -b tsconfig.types.json && tsc-alias -p tsconfig.types.json",
"bundle:web": "node bundle.js",
"build": "yarn run clean && yarn build:cjs && yarn build:esm && yarn build:types && yarn bundle:web",
"format": "prettier --write 'src/**/*.ts'",
"clean": "rimraf ./lib",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier:format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint && yarn build",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags",
"yalc:publish": "yarn build && yalc publish --push",
"test": "jest",
"test:unit": "jest ./src/__tests__/unit",
"test:integration:basic": "jest ./src/__tests__/integration/basic",
"test:integration:internal-writes": "jest ./src/__tests__/integration/internal-writes",
"test:integration:wasm": "jest ./src/__tests__/integration/wasm",
"test:regression": "node ./node_modules/.bin/jest ./src/__tests__/regression"
},
"license": "MIT",
"author": "Redstone Team <dev@redstone.finance>",
"contributors": [
"Jakub Wojciechowski <jakub@redstone.finance>",
"Alex Suvorov <alex@redstone.finance>",
"Piotr Pedziwiatr <peter@redstone.finance>"
],
"files": [
"lib/",
"docs/",
"LICENSE",
"README.md",
"bundles/"
],
"keywords": [
"smartweave",
"arweave"
],
"bugs": {
"url": "https://github.com/warp-contracts/warp/issues"
},
"homepage": "https://github.com/warp-contracts/warp#readme",
"dependencies": {
"@assemblyscript/loader": "^0.19.23",
"@idena/vrf-js": "^1.0.1",
"archiver": "^5.3.0",
"arweave": "1.11.4",
"bignumber.js": "^9.0.1",
"elliptic": "^6.5.4",
"fast-copy": "^2.1.1",
"knex": "^0.95.14",
"lodash": "^4.17.21",
"redstone-isomorphic": "1.1.6",
"redstone-wasm-metering": "1.0.0",
"safe-stable-stringify": "2.3.1",
"stream-buffers": "^3.0.2",
"tslog": "^3.2.2",
"unzipit": "^1.4.0",
"vm2": "3.9.9"
},
"devDependencies": {
"@types/cheerio": "^0.22.30",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"arlocal": "1.1.42",
"cheerio": "^1.0.0-rc.10",
"cli-table": "0.3.11",
"colors": "^1.4.0",
"cors": "^2.8.5",
"esbuild": "^0.14.25",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"express": "^4.17.1",
"jest": "^27.4.3",
"pg": "^8.7.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"simple-statistics": "^7.7.0",
"smartweave": "0.4.48",
"sqlite3": "^5.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.2.1",
"tsc-alias": "1.3.10",
"tsconfig-paths": "^3.10.1",
"typescript": "4.5.2"
},
"browser": {
"fs": false,
"path": false,
"crypto": false,
"vm2": false,
"archiver": false,
"stream-buffers": false,
"constants": false
}
}