-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"name": "reactive-dot",
"private": true,
"description": "A reactive library for building Polkadot front-ends",
"keywords": [
"polkadot",
"react",
"substrate"
],
"homepage": "https://reactivedot.dev/",
"bugs": {
"url": "https://github.com/buffed-labs/reactive-dot/issues",
"email": "tien.nguyenkhac@icloud.com"
},
"license": "LGPL-3.0-or-later",
"author": "Tiến Nguyễn Khắc <tien.nguyenkhac@icloud.com> (https://tien.zone/)",
"repository": "github:buffed-labs/reactive-dot",
"workspaces": [
"apps/*",
"examples/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "nx run-many -t dev",
"build": "nx run-many -t build",
"build:packages": "nx run-many -t build --projects='packages/*'",
"publish:packages": "yarn build:packages && scripts/publish.sh",
"lint": "nx run-many -t lint -- --max-warnings=0",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"test": "vitest",
"postinstall": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@vitest/coverage-v8": "4.1.4",
"esbuild": "^0.28.0",
"husky": "^9.1.7",
"nx": "^22.6.5",
"oxfmt": "^0.45.0",
"vitest": "^4.1.4"
},
"engines": {
"node": "24.x"
},
"packageManager": "yarn@4.13.0"
}