-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.45 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
{
"name": "@trey.turner/artifacts-api-client",
"version": "1.1.0",
"module": "index.ts",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/treyturner/ts-artifacts.git"
},
"scripts": {
"build": "tsc -p src/tsconfig.json",
"check": "bun run --silent lint && bun run --silent format && bun run --silent typecheck",
"check:fix": "bun run --silent lint:fix && bun run --silent format:fix && bun run --silent typecheck",
"clean": "bun run --silent clean:build && bun run --silent clean:deps",
"clean:build": "rm -rf dist",
"clean:deps": "rm -rf node_modules bun.lockb",
"format": "biome format src/ test/",
"format:fix": "biome format --write src/ test/",
"generate": "openapi-typescript https://api.artifactsmmo.com/openapi.json -o ./src/lib/api.generated.ts && biome format --write src/lib/api.generated.ts",
"lint": "biome lint --error-on-warnings src/ test/",
"lint:fix": "biome lint --error-on-warnings --fix src/ test/",
"typecheck": "tsc -p src/tsconfig.json && tsc --noEmit -p test/tsconfig.json",
"watch": "tsc -w -p src/tsconfig.json"
},
"dependencies": {
"node-inspect-extracted": "3.0.2"
},
"devDependencies": {
"@types/bun": "latest",
"bun-bagel": "1.1.0",
"dotenv": "16.4.5",
"openapi-typescript": "7.4.1",
"typescript": "5.6.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}