-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.03 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
{
"name": "@tableland/validator",
"version": "0.0.0",
"validatorVersion": "1.12.0",
"description": "tableland validator binary repository",
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"bin/**/*",
"dist/**/*.js?(.map)",
"dist/**/package.json",
"dist/**/*.d.ts",
"src/**/*.ts"
],
"scripts": {
"lint": "eslint '**/*.{js,ts}'",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.{ts,json,sol,md}' --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"prepublishOnly": "npm run build",
"test": "mocha",
"coverage": "c8 mocha --exit",
"clean": "rm -rf dist",
"build:esm": "cp src/module-specific-esm.ts src/module-specific.ts && tsc -p tsconfig.json",
"build:cjs": "cp src/module-specific-cjs.ts src/module-specific.ts && tsc -p tsconfig.cjs.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs && node --experimental-fetch dist/cjs/build.js && ./fixup.sh"
},
"keywords": [
"tableland",
"sql",
"ethereum",
"database"
],
"license": "MIT AND Apache-2.0",
"devDependencies": {
"@tableland/local": "^3.0.0",
"@types/decompress": "^4.2.4",
"@types/mocha": "^10.0.1",
"@types/node": "^22.2.0",
"@types/shelljs": "^0.8.14",
"@types/tar": "^6.1.3",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"c8": "^10.0.0",
"decompress": "^4.2.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.29.0",
"mocha": "^10.2.0",
"prettier": "^3.2.4",
"shelljs": "^0.8.5",
"tar": "^6.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}