-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.86 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@gillsdk/testing",
"license": "MIT",
"version": "0.0.1",
"description": "A modern JavaScript/TypeScript testing library for Solana blockchain development",
"scripts": {
"clean": "rimraf coverage dist build node_modules .turbo .docs",
"prebuild": "rimraf dist",
"compile:js": "tsup --config ./tsup.config.package.ts",
"compile:typedefs": "tsc -p ./tsconfig.declarations.json",
"prepublishOnly": "pnpm pkg delete devDependencies",
"publish-impl": "npm view $npm_package_name@$npm_package_version > /dev/null 2>&1 || (pnpm publish --tag ${PUBLISH_TAG:-canary} --access public --no-git-checks && (([ \"$PUBLISH_TAG\" != \"canary\" ] && pnpm dist-tag add $npm_package_name@$npm_package_version latest) || true))",
"publish-packages": "pnpm prepublishOnly && pnpm publish-impl",
"coverage": "pnpm test:unit:node --coverage",
"coverage:open": "export BROWSER=brave && xdg-open ./coverage/lcov-report/index.html > /dev/null",
"test:typecheck": "tsc --noEmit",
"test:unit:node": "TERM_OVERRIDE=\"${TURBO_HASH:+dumb}\" TERM=${TERM_OVERRIDE:-$TERM} jest -c ../../packages/test-config/jest-unit.config.node.ts --rootDir . --silent",
"test:unit:browser": "TERM_OVERRIDE=\"${TURBO_HASH:+dumb}\" TERM=${TERM_OVERRIDE:-$TERM} jest -c ../../packages/test-config/jest-unit.config.browser.ts --rootDir . --silent",
"test:treeshakability:browser": "agadoo dist/index.browser.mjs",
"test:treeshakability:native": "agadoo dist/index.native.mjs",
"test:treeshakability:node": "agadoo dist/index.node.mjs && agadoo dist/node/index.node.mjs",
"style:check": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,css,json,md,mdx}'",
"style:fix": "pnpm style:check --write"
},
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.node.mjs",
"require": "./dist/index.node.cjs",
"default": "./dist/index.node.cjs"
},
"browser": {
"./dist/index.node.cjs": "./dist/index.browser.cjs",
"./dist/index.node.mjs": "./dist/index.browser.mjs"
},
"main": "./dist/index.node.cjs",
"module": "./dist/index.node.mjs",
"types": "./dist/index.d.ts",
"files": [
"./dist/"
],
"sideEffects": false,
"keywords": [
"blockchain",
"solana",
"web3",
"web3js v2",
"solana kit",
"solana helpers",
"@solana/web3.js",
"@solana/kit",
"testing",
"fixtures",
"solana-testing",
"web3-testing"
],
"author": "Nick Frostbutter <maintainers@gillsdk.com>",
"homepage": "https://gillsdk.com",
"repository": {
"type": "git",
"url": "https://github.com/gillsdk/gill.git"
},
"bugs": {
"url": "https://github.com/gillsdk/gill/issues"
},
"browserslist": [
"supports bigint and not dead",
"maintained node versions"
],
"dependencies": {
"gill": "workspace:*"
},
"peerDependencies": {
"typescript": ">=5"
},
"engines": {
"node": ">=20.18.0"
}
}