-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.05 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "subtopia-js-sdk",
"version": "2.0.3-beta.4",
"description": "Subtopia SDK for JavaScript",
"license": "SEE LICENSE IN LICENSE.md",
"author": "[email protected]",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json && vite build && cpy package.json README.md dist",
"test": "vitest run --coverage",
"lint": "eslint src",
"format": "eslint src --fix && prettier . --write",
"docs": "npx typedoc src/index.ts --excludePrivate --excludeExternals --exclude '**/adminClient.ts'",
"commit": "cz",
"release": "semantic-release",
"pre-commit": "npm run format && npm run lint && npm run test && npm run build && npm run docs"
},
"peerDependencies": {
"@algorandfoundation/algokit-utils": "^6.2.1",
"algosdk": "^2.7.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/node": "^20.16.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitest/coverage-v8": "^2.0.5",
"commitizen": "4.3.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cpy-cli": "^5.0.0",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^16.4.5",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"semantic-release": "24.2.0",
"tslib": "^2.7.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"type": "build",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"prepareCmd": "npm run build"
}
],
[
"@semantic-release/npm",
{
"pkgRoot": "dist"
}
],
"@semantic-release/github"
],
"branches": [
{
"name": "main",
"prerelease": "beta"
},
{
"name": "release"
}
],
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"lint-staged": {
"src/**/**/*.{ts,tsx}": [
"prettier . --write",
"git add"
]
}
}