-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.81 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
86
87
88
{
"name": "@monaxlabs/aspen-sdk",
"license": "Apache-2.0",
"version": "0.0.0",
"author": "Silas Davis <[email protected]>",
"type": "commonjs",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "[email protected]:monax/aspen-sdk.git",
"directory": "sdk"
},
"sideEffects": false,
"files": [
"dist/**",
"LICENSE",
"README.md"
],
"scripts": {
"build": "pnpm run build:generate && pnpm run build:ts",
"build:generate": "pnpm run generate:spec && pnpm run generate:apis",
"build:ts": "tsc --project tsconfig.dist.json",
"build:ts:watch": "tsc --watch --project tsconfig.dist.json",
"clean:compiled": "find .. -name node_modules -prune -o \\\\( -wholename '**/src/**' -a \\\\( -name '*.js' -o -name '*.d.ts' -o -name '*.js.map' \\\\) \\\\) -print",
"test": "vitest --run",
"fix": "pnpm run fix:prettier && pnpm run fix:eslint",
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint --fix '**/*.ts'",
"lint": "pnpm lint:js && pnpm lint:types",
"lint:js": "eslint '**/*.{js,ts}'",
"lint:types": "pnpm tsc --noEmit",
"tsnode": "ts-node --esm --experimental-specifier-resolution=node",
"generate:spec": "ts-node src/codegen/cmd/generate.ts",
"generate:apis": "pnpm generate:gating && pnpm generate:identity",
"generate:gating": "npx openapi-typescript-codegen --input ./node_modules/@monaxlabs/spec/apis/gating.json --output ./src/apis/gating/generated --client axios --useOptions",
"generate:identity": "npx openapi-typescript-codegen --input ./node_modules/@monaxlabs/spec/apis/identity.json --output ./src/apis/identity/generated --client axios --useOptions",
"examples:clear-state": "rm ../examples/flows/collection-info.json src/examples/issuance-info.json",
"publish:public": "pnpm publish --no-git-checks --access public",
"publish:private": "pnpm google:auth && pnpm publish --force --no-git-checks --registry https://europe-npm.pkg.dev/ew-gce-cluster-monax-io/monaxlabs/",
"publish:bump-version": "npm version --allow-same-version --no-git-tag-version $(../scripts/version.sh)",
"publish:public:bump": "pnpm publish:bump-version && pnpm publish:public",
"publish:public:bump:prerelease": "pnpm publish:public:bump --tag prerelease",
"publish:private:bump": "pnpm publish:bump-version && pnpm publish:private",
"build:pack": "pnpm build && pnpm pack --pack-destination",
"build:ts:pack": "pnpm build:ts && pnpm pack --pack-destination",
"google:auth": "npx google-artifactregistry-auth",
"google:npmrc": "gcloud artifacts print-settings npm --project=ew-gce-cluster-monax-io --repository=monaxlabs --location=europe --scope=@monaxlabs",
"print:version": "../scripts/version.sh"
},
"dependencies": {
"@monaxlabs/phloem": "0.17.4",
"ethers": "^5.7.2",
"axios": "^1.2.2",
"ts-deepmerge": "^6.2.0",
"date-fns": "^2.29.3",
"form-data": "^4.0.0",
"fp-ts": "^2.14.0",
"io-ts": "^2.2.20",
"io-ts-codegen": "^0.5.0",
"io-ts-reporters": "^2.0.1",
"io-ts-types": "^0.5.19",
"jose": "^4.11.1",
"monocle-ts": "^2.3.13",
"newtype-ts": "^0.3.5",
"oidc-client-ts": "^2.2.4",
"utility-types": "^3.10.0",
"viem": "^1.16.6"
},
"devDependencies": {
"@monaxlabs/spec": "0.17.4",
"@monaxlabs/cambium": "0.16.52",
"@openzeppelin/contracts": "^4.8.1",
"typescript": "^5.2.2",
"@types/node": "^18.11.18",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"google-artifactregistry-auth": "^3.0.2",
"openapi-typescript-codegen": "^0.23.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.2.1",
"ts-node": "^10.9.1",
"vite": "^4.4.5",
"vitest": "^0.34.2"
}
}