-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.64 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@mikecbrant/appsyncjs",
"version": "0.0.0",
"description": "Monorepo for npm modules for use with AWS Appsync JS resolver runtime",
"type": "module",
"keywords": [
"appsync",
"appsync_js",
"appsyncjs",
"aws",
"graphql",
"resolver",
"resolvers"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mikecbrant/appsyncjs.git"
},
"bugs": {
"url": "https://github.com/mikecbrant/appsyncjs/issues"
},
"homepage": "https://github.com/mikecbrant/appsyncjs#readme",
"author": "Mike Brant",
"license": "MIT",
"scripts": {
"build": "pnpm -r build",
"clean": "pnpm -r clean && rm -rf ./node_modules",
"fresh": "pnpm clean && pnpm i --frozen-lockfile",
"fmt": "prettier . --write --cache",
"fmt:check": "prettier . --check --debug-check",
"lint": "pnpm -r lint",
"lint:check": "pnpm -r lint:check",
"typecheck:tsgo": "tsgo check",
"preinstall": "npx only-allow pnpm",
"test": "pnpm build && pnpm lint && pnpm -r test",
"up": "pnpm update --include-workspace-root"
},
"devDependencies": {
"@changesets/cli": "^2.29.6",
"@mikecbrant/eslint-config": "^1.0.0",
"@mikecbrant/prettier-config": "^0.1.0",
"@mikecbrant/tsconfig": "^0.1.0",
"@typescript/native-preview": "^7.0.0-dev.0",
"eslint": "^9.34.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-unused-imports": "^4.0.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"eslint-config-prettier": "^9.1.0"
},
"overrides": {
"eslint": "9.34.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": "^22.11.0 || ^24.5.0",
"npm": "none",
"pnpm": "^10.15.1",
"yarn": "none"
},
"packageManager": "pnpm@10.15.1"
}