-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.56 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.56 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
{
"name": "api-toolkit-monorepo",
"private": true,
"description": "Monorepo for @stacks/api-toolkit and related packages",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test -w @stacks/api-toolkit",
"lint:eslint": "eslint packages --ext .ts,.tsx -f unix",
"lint:prettier": "prettier --check \"packages/api-toolkit/src/**/*.ts\" \"packages/api-test-toolkit/src/**/*.ts\"",
"testenv:run": "npm run testenv:run -w @stacks/api-toolkit",
"testenv:stop": "npm run testenv:stop -w @stacks/api-toolkit",
"testenv:logs": "npm run testenv:logs -w @stacks/api-toolkit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stx-labs/api-toolkit.git"
},
"author": "Stacks Labs",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/stx-labs/api-toolkit/issues"
},
"homepage": "https://github.com/stx-labs/api-toolkit#readme",
"prettier": "@stacks/prettier-config",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@stacks/eslint-config": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"copyfiles": "^2.4.1",
"eslint": "^8.36.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"prettier": "^2.8.6",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.9.3"
},
"version": "1.13.0"
}