-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.65 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.65 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
64
65
66
67
68
69
70
71
72
{
"name": "@devpanda/24fire-api",
"description": "A TypeScript library for 24fire API integration",
"version": "0.0.1-beta.6",
"type": "module",
"files": [
"dist"
],
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "bunup",
"dev": "bunup --watch",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"tsc": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"release": "bumpp --commit --push --tag",
"publish:ci": "bun publish --access public --no-git-checks",
"publish:test": "bun publish --dry-run",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/bun": "^1.2.21",
"bumpp": "^10.2.3",
"bunup": "^0.12.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devpanda0/24fire-api.git"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"simple-git-hooks": {
"pre-commit": "bun run lint:fix && git add ."
},
"homepage": "https://github.com/devpanda0/24fire-api#readme",
"bugs": {
"url": "https://github.com/devpanda0/24fire-api/issues"
},
"license": "MIT",
"dependencies": {
"arktype": "^2.1.22",
"axios": "^1.12.2"
}
}