-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.71 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.71 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
{
"name": "@clustersxyz/data-availability",
"version": "0.0.6",
"description": "",
"main": "index.cjs",
"module": "index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs",
"types": "./index.d.ts"
}
},
"type": "module",
"scripts": {
"build": "npm run lint && rm -rf lib && rollup -c",
"clean": "rm -rf lib",
"mypublish": "npm run build && cp package.json lib && cp README.md lib && cp LICENSE lib",
"lint": "eslint . --ext .ts",
"test": "npm run build && node --loader ts-node/esm --experimental-specifier-resolution=node --trace-warnings examples/test.ts",
"format": "prettier --write \"src/**/*.ts\"",
"format-check": "prettier --check \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/clustersxyz/data-availability.git"
},
"author": "clustersxyz",
"license": "MIT",
"bugs": {
"url": "https://github.com/clustersxyz/data-availability/issues"
},
"homepage": "https://github.com/clustersxyz/data-availability#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "11.1.6",
"@types/bun": "latest",
"@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"arlocal": "1.1.66",
"dotenv": "16.4.5",
"eslint": "8.56.0",
"prettier": "3.2.5",
"rollup": "4.22.4",
"tslib": "^2.6.3",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "5.4.5"
},
"dependencies": {
"@clustersxyz/sdk": "0.4.3",
"arweave": "1.15.1",
"ts-node": "10.9.2"
}
}