-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "@fullstacksjs/tsconfig",
"version": "2.0.0",
"license": "MIT",
"author": "fullstacksJS <fullstacksjs@gmail.com>",
"description": "FullstacksJS community base tsconfig",
"repository": {
"type": "git",
"url": "git+https://github.com/fullstacksjs/tsconfig.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"*.json"
],
"type": "module",
"scripts": {
"lint": "eslint . --fix",
"build": "./scripts/createEntries.js",
"cleanup": "./scripts/removeEntries.js",
"prepublishOnly": "pnpm build && pinst --disable",
"postpublish": "pnpm cleanup && pinst --enable",
"prepack": "pnpm build && pinst --disable",
"postpack": "pnpm cleanup && pinst --enable",
"prepare": "husky"
},
"devDependencies": {
"@fullstacksjs/eslint-config": "12.1.1",
"eslint": "9.25.1",
"husky": "9.1.7",
"jsonc-parser": "3.3.1",
"lint-staged": "15.5.1",
"np": "10.2.0",
"pinst": "3.0.0",
"prettier": "3.5.3",
"typescript": "5.8.3"
},
"peerDependencies": {
"typescript": ">=5"
},
"np": {
"yolo": true
}
}