-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.59 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
{
"name": "@zktx.io/ptb-builder-monorepo",
"private": true,
"scripts": {
"lint": "eslint 'packages/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'packages/**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --write 'packages/**/*.{js,jsx,ts,tsx,json,css,md}'",
"dev": "npm run build && cd packages/example && npm run dev",
"build": "npm run build --workspace @zktx.io/ptb-model && npm run build --workspace @zktx.io/ptb-cli && cd packages/ptb-builder && npm run build",
"test:builder-flow": "npm run test --workspace @zktx.io/ptb-builder && npm run test --workspace example",
"test:cli": "npm run typecheck:test --workspace @zktx.io/ptb-cli && npm run test --workspace @zktx.io/ptb-cli",
"test:model": "npm run test --workspace @zktx.io/ptb-model",
"version:patch": "lerna version patch",
"version:minor": "lerna version minor",
"prepare": "husky install"
},
"author": "daoauth",
"license": "ISC",
"description": "Sui programmable transaction blocks builder",
"workspaces": [
"packages/ptb-model",
"packages/ptb-cli",
"packages/ptb-builder",
"packages/example"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"baseline-browser-mapping": "^2.9.7",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.6",
"lerna": "^9.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"typescript-eslint": "^8.19.1"
}
}