-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.74 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
{
"name": "@liftedinit/manifestjs",
"version": "v0.0.1-alpha.19",
"description": "Javascript library for interacting with Manifest",
"author": "The Lifted Initiative <[email protected]>",
"homepage": "https://github.com/liftedinit/manifestjs#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"directories": {
"lib": "src"
},
"files": [
"dist",
"!CHANGELOG.md"
],
"scripts": {
"build:cjs": "yarn tsc -p tsconfig.json --outDir dist --module commonjs || true",
"build:mjs": "yarn tsc -p tsconfig.json --outDir mjs --module es2022 --declaration false || true",
"clean:mjs": "rimraf mjs",
"clean:dist": "rimraf dist",
"clean": "npm run clean:mjs && npm run clean:dist",
"build:rename": "publish-scripts --cmd rename --srcDir mjs --outDir dist --findExt js --replaceExt mjs --no-rmDir",
"build": "npm run clean && npm run build:cjs && npm run build:mjs && npm run build:rename",
"codegen": "node scripts/codegen.js",
"prepare": "npm run build",
"lint": "eslint 'src/**/*.{js,ts,jsx,tsx}' --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"starship": "starship --config ./starship/configs/config.group.local.yaml",
"starship:test": "jest --config ./jest.starship.config.js --runInBand --verbose --bail",
"starship:debug": "jest --config ./jest.starship.config.js --runInBand --verbose --bail",
"starship:watch": "jest --watch --config ./jest.starship.config.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/liftedinit/manifestjs"
},
"keywords": [],
"bugs": {
"url": "https://github.com/liftedinit/manifestjs/issues"
},
"devDependencies": {
"@cosmology/telescope": "^1.10.6",
"@protobufs/cosmos": "^0.1.0",
"@protobufs/cosmos_proto": "^0.0.10",
"@protobufs/gogoproto": "^0.0.10",
"@protobufs/google": "^0.0.10",
"@protobufs/ibc": "^0.1.0",
"@protobufs/tendermint": "^0.0.10",
"@starship-ci/cli": "^2.11.0",
"@types/jest": "^29.5.0",
"eslint": "8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-in-case": "^1.0.2",
"prettier": "^2.8.7",
"publish-scripts": "0.1.0",
"rimraf": "^5.0.0",
"starshipjs": "^2.4.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@cosmjs/amino": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "npm:@liftedinit/[email protected]",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@cosmology/lcd": "^0.14.0"
}
}