-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.2 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
{
"name": "@kit-helpers/query",
"version": "0.1.0",
"description": "Framework-agnostic query definitions for Solana data fetching",
"exports": {
"types": "./dist/types/index.d.ts",
"react-native": "./dist/index.react-native.mjs",
"browser": {
"import": "./dist/index.browser.mjs",
"require": "./dist/index.browser.cjs"
},
"node": {
"import": "./dist/index.node.mjs",
"require": "./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",
"react-native": "./dist/index.react-native.mjs",
"types": "./dist/types/index.d.ts",
"type": "commonjs",
"files": [
"./dist/types",
"./dist/index.*"
],
"sideEffects": false,
"keywords": [
"solana",
"kit",
"plugin",
"query",
"data-fetching"
],
"scripts": {
"build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
"dev": "vitest --project node",
"test": "pnpm test:types && pnpm test:treeshakability && pnpm test:unit",
"test:treeshakability": "for file in dist/index.*.mjs; do agadoo $file; done",
"test:types": "tsc --noEmit",
"test:unit": "vitest run"
},
"peerDependencies": {
"@solana-program/token": "^0.15.0",
"@solana/kit": "^7.0.0"
},
"devDependencies": {
"@solana-program/token": "^0.15.0",
"@solana/kit": "^7.0.0",
"@types/node": "^25.4.0",
"agadoo": "^3.0.0",
"browserslist-to-esbuild": "^2.1.1",
"happy-dom": "^20.8.3",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"vitest": "^4.0.18"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/amilz/kit-helpers",
"directory": "plugins/query"
},
"bugs": {
"url": "https://github.com/amilz/kit-helpers/issues"
},
"browserslist": [
"supports bigint and not dead",
"maintained node versions"
]
}