forked from metaplex-foundation/kinobi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.6 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
79
80
81
82
83
84
85
{
"name": "@metaplex-foundation/kinobi",
"version": "0.19.2",
"description": "Generate powerful clients for your Solana programs",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"files": [
"/dist/cjs",
"/dist/types",
"/src"
],
"scripts": {
"build": "rimraf dist && tsc && tsc -p test/tsconfig.json && pnpm build:njk",
"build:njk": "copyfiles -u 1 src/**/*.njk dist/cjs/ && copyfiles -u 1 src/**/*.njk dist/test/src/",
"build:docs": "typedoc",
"test": "ava && node ./test/testFile.cjs && pnpm test:js && pnpm test:js-experimental",
"test:js": "(cd ./test/packages/js && pnpm install && pnpm build)",
"test:js-experimental": "(cd ./test/packages/js-experimental && pnpm install && pnpm build && pnpm lint)",
"lint": "prettier -c ./src/ && eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "prettier --write ./src && eslint . --ext .js,.jsx,.ts,.tsx",
"package:change": "changeset",
"package:version": "changeset version",
"package:publish": "pnpm lint && pnpm build && changeset publish"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"solana",
"client",
"framework",
"generator"
],
"author": "Metaplex Maintainers <[email protected]>",
"license": "MIT",
"repository": {
"url": "https://github.com/metaplex-foundation/kinobi.git"
},
"dependencies": {
"@noble/hashes": "^1.4.0",
"@prettier/sync": "^0.5.1",
"@solana/codecs-strings": "tp3",
"chalk": "^4.0.0",
"json-stable-stringify": "^1.1.1",
"nunjucks": "^3.2.4",
"prettier": "^3.2.5"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@types/json-stable-stringify": "^1.0.36",
"@types/node": "^18.11.17",
"@types/nunjucks": "^3.2.1",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"ava": "^6.1.2",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.1.3",
"rimraf": "^3.0.2",
"typedoc": "^0.25.0",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.4.3",
"vercel": "^33.0.0"
},
"ava": {
"files": [
"!test/packages/**",
"test/**/*.test.ts"
],
"typescript": {
"compile": false,
"rewritePaths": {
"src/": "dist/test/src/",
"test/": "dist/test/test/"
}
}
},
"packageManager": "[email protected]"
}