-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 3.15 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@tableland/jeti",
"version": "0.0.0",
"description": "An IPFS and generic plugin framework for inserting & retrieving data with the @tableland/sdk",
"repository": "https://github.com/tablelandnetwork/jeti",
"license": "MIT AND Apache-2.0",
"publishConfig": {
"access": "public"
},
"keywords": [
"tableland",
"sql",
"ethereum"
],
"engines": {
"node": ">=12.0.0"
},
"type": "module",
"main": "./dist/cjs/main.js",
"module": "./dist/esm//main.js",
"types": "./dist/esm//main.d.ts",
"exports": {
".": {
"require": "./dist/cjs/main.js",
"import": "./dist/esm/main.js",
"default": "./dist/esm/main.js"
},
"./connector": {
"require": "./dist/cjs/lib/connector.js",
"import": "./dist/esm/src/lib/connector.js",
"default": "./dist/esm/src/lib/connector.js"
}
},
"files": [
"dist/**/*.js?(.map)",
"dist/**/*.d.ts",
"dist/**/package.json",
"src/**/*.ts"
],
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"test": "mocha",
"coverage": "TEST_TIMEOUT_FACTOR=3 c8 --100 --exclude test mocha --exit",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts",
"docs:html": "typedoc --entryPoints src/main.ts --plugin none",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esbuild": "esbuild src/main.ts --bundle --minify --external:node:* --sourcemap=external --outfile=dist/esbuild/main.js --format=esm && node ./node_modules/add-js-extension/dist/bin.js ./dist/esm --once",
"build:dev": "esbuild src/main.ts --bundle --outfile=dist/esbuild/main.js --format=esm --sourcemap=inline",
"build:watch": "esbuild src/main.ts --bundle --watch --outfile=dist/esbuild/main.js --format=esm && node ./node_modules/add-js-extension/dist/bin.js ./dist/esm --once",
"build": "npm run build:esm && npm run build:cjs && npm run build:esbuild && sh ./fixup.sh",
"prepublishOnly": "npm run build",
"prettier": "prettier \"**/*.{ts,json,md}\" --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"devDependencies": {
"@tableland/local": "^3.0.0",
"@tableland/sdk": "^7.0.0",
"@types/crypto-js": "^4.1.1",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"add-js-extension": "^1.0.4",
"c8": "^9.0.0",
"esbuild": "^0.21.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.29.0",
"mocha": "^10.2.0",
"mockipfs": "^0.3.2",
"prettier": "^3.2.4",
"sinon": "^18.0.0",
"tempy": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"uint8arrays": "^5.0.1"
},
"dependencies": {
"buffer": "^6.0.3",
"crypto-js": "4.2.0",
"ipfs-http-client": "^60.0.1"
},
"contributors": [
"Dan Buchholz <[email protected]>",
"Carson Farmer <[email protected]>",
"Joe Wagner <[email protected]>"
]
}