forked from metaplex-foundation/kinobi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.85 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
{
"name": "@solanafm/kinobi-lite",
"version": "0.12.3",
"description": "A lite client of Kinobi by Metaplex Foundations that's suitable for web deployment and omits the renderers",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --minify",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm exec jest --watch",
"clean": "rm -rf node_modules && rm -rf dist",
"lint": "prettier -c ./src/ && eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "prettier --write ./src && eslint . --ext .js,.jsx,.ts,.tsx"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"solana",
"client",
"framework",
"generator"
],
"author": "SolanaFM <contact@solana.fm>",
"license": "MIT",
"repository": {
"url": "https://github.com/solana-fm/kinobi-lite.git"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.11.17",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.0.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"tsup": "^6.7.0",
"typescript": "^4.9.4"
},
"dependencies": {
"@noble/hashes": "^1.1.5"
},
"packageManager": "pnpm@9.0.5+sha256.61bd66913b52012107ec25a6ee4d6a161021ab99e04f6acee3aa50d0e34b4af9"
}