-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.19 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
{
"name": "@lifi/solana-programs",
"version": "0.1.12",
"description": "",
"type": "module",
"keywords": [],
"author": "Lars Froelich",
"exports": {
".": {
"types": "./dist/_types/index.d.ts",
"import": "./dist/_esm/index.js",
"default": "./dist/_cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/_cjs/index.js",
"module": "./dist/_esm/index.js",
"types": "./dist/_types/index.d.ts",
"typings": "./dist/_types/index.d.ts",
"scripts": {
"build": "pnpm clean && pnpm build:cjs && pnpm build:esm && pnpm build:types && eslint --fix --cache .",
"build:cjs": "tsc --project ./tsconfig.build.json --module commonjs --outDir ./dist/_cjs --removeComments --verbatimModuleSyntax false && printf '{\"type\":\"commonjs\"}' > ./dist/_cjs/package.json && eslint --fix --cache .",
"build:esm": "tsc --project ./tsconfig.build.json --module es2020 --outDir ./dist/_esm && printf '{\"type\": \"module\",\"sideEffects\":false}' > ./dist/_esm/package.json && eslint --fix --cache .",
"build:types": "tsc --project ./tsconfig.build.json --module esnext --declarationDir ./dist/_types --emitDeclarationOnly --declaration --declarationMap && eslint --fix --cache .",
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
"test": "vitest",
"lint:fix": "eslint . --fix --ext .ts",
"lint:fix:cached": "eslint . --cache --fix --ext .ts",
"release": "standard-version -a",
"release:alpha": "standard-version -a --prerelease alpha --skip.changelog",
"release:beta": "standard-version -a --prerelease beta --skip.changelog"
},
"dependencies": {
"@solana/web3.js": "^1.95.0",
"borsher": "^3.5.0",
"bs58": "^6.0.0",
"buffer": "^6.0.3"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"standard-version": "^9.5.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.1.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "3.3.3",
"typescript": "5.5.4",
"typescript-eslint": "^8.5.0",
"vitest": "^2.1.5"
},
"files": [
"dist/**",
"lifi-solana-program-1/ts/**"
],
"packageManager": "[email protected]"
}