-
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.41 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.41 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": "tinup",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.14.0",
"description": "tinup",
"author": {
"name": "tinywaves",
"email": "dhzhme@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/tinywaves/tinup",
"keywords": [
"tinup"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsup",
"build:dev": "tsup --watch",
"dev": "tsx watch --clear-screen=false src/index.ts",
"lint": "eslint",
"lint-fix": "eslint --fix .",
"prepare": "husky",
"release": "bumpp",
"release:publish": "pnpm release && pnpm publish",
"test": "vitest run",
"test:coverage": "pnpm run test --coverage",
"test:dev": "vitest"
},
"dependencies": {
"dotenv": "^17.2.1",
"koa": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@dhzh/eslint-config": "^1.9.0",
"@types/koa": "^3.0.0",
"@types/node": "^24.3.0",
"@vitest/coverage-v8": "^3.2.4",
"bumpp": "^10.2.3",
"eslint": "^9.25.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"tsup": "^8.5.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}