-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 836 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 836 Bytes
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
{
"$schema": "https://www.schemastore.org/package.json",
"private": true,
"type": "module",
"scripts": {
"check": "npx tsc --checkJs --noEmit src/**/*.js tests/**/*.js",
"lint": "npx @biomejs/biome check src tests",
"lint:fix": "npx @biomejs/biome check --write src tests",
"test": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slack-samples/bolt-js-examples.git"
},
"author": "Slack Technologies, LLC",
"bugs": {
"url": "https://github.com/slack-samples/bolt-js-examples/issues"
},
"homepage": "https://github.com/slack-samples/bolt-js-examples/blob/main/block-kit/README.md",
"dependencies": {
"@slack/types": "^2.20.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@types/node": "^24.12.2",
"typescript": "^5.9.3"
}
}