-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.6 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
{
"name": "dynamodb-tooling",
"type": "module",
"version": "0.3.2",
"description": "A toolkit of useful DynamoDB goodies.",
"author": "Chris Breuer <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/dynamodb-tooling#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/dynamodb-tooling.git"
},
"bugs": {
"url": "https://github.com/stacksjs/dynamodb-tooling/issues"
},
"keywords": ["dynamodb", "utilities", "typescript", "bun", "package"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*"
}
},
"bin": {
"dbtooling": "./dist/cli.js"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist", "src"],
"scripts": {
"build": "bun --bun build.ts && bun --bun run compile",
"compile": "bun build ./bin/cli.ts --compile --minify --outfile dist/dbtooling",
"create-offline-table": "aws dynamodb create-table --table-name=MyOfflineTable --attribute-definitions AttributeName=Artist,AttributeType=S AttributeName=SongTitle,AttributeType=S --key-schema AttributeName=Artist,KeyType=HASH AttributeName=SongTitle,KeyType=RANGE --provisioned-throughput ReadCapacityUnits=5,WriteCapacityUnits=5 --endpoint-url http://localhost:8000 --region us-east-1",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"commit": "git cz",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun --bun run build",
"release": "bun run changelog && bunx bumpp package.json --all",
"test": "bun test",
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@commitlint/cli": "^19.5.0",
"@stacksjs/biome-config": "^0.1.5",
"@stacksjs/cli": "^0.64.6",
"@stacksjs/logging": "^0.64.6",
"@stacksjs/storage": "^0.64.6",
"@types/bun": "^1.1.10",
"@types/tar": "^6.1.13",
"bumpp": "^9.6.1",
"bun-plugin-dts-auto": "^0.17.0",
"c12": "^2.0.1",
"changelogen": "^0.5.7",
"commitizen": "^4.3.1",
"cz-git": "^1.10.0",
"dynamodb-toolbox": "^1.10.2",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"tar": "^7.4.3",
"typescript": "^5.6.2"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged",
"commit-msg": "bunx --no -- commitlint --edit $1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "biome check --fix ."
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}