-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.6 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
{
"name": "pkg-placeholder",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.15.1",
"description": "_description_",
"author": "lonewolfyx",
"license": "MIT",
"homepage": "https://github.com/lonewolfyx/pkg-placeholder#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lonewolfyx/pkg-placeholder.git"
},
"bugs": "https://github.com/lonewolfyx/pkg-placeholder/issues",
"keywords": [],
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"release": "npm publish",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepublishOnly": "pnpm build",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@lonewolfyx/tsconfig": "^0.0.6",
"@types/node": "^24.10.9",
"eslint": "^9.39.2",
"lint-staged": "^16.2.7",
"picocolors": "^1.1.1",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.14.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"lint-staged": {
"*": "eslint --fix"
}
}