-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.96 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
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
73
74
75
{
"name": "unleashed-typescript",
"version": "0.0.0-development",
"description": "TypeScript with exposed internal definitions and some private methods for type checking.",
"author": {
"name": "skarab42",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/skarab42/unleashed-typescript.git"
},
"homepage": "https://github.com/skarab42/unleashed-typescript",
"bugs": "https://github.com/skarab42/unleashed-typescript/issues",
"funding": "https://github.com/sponsors/skarab42",
"license": "MIT",
"private": false,
"main": "./lib/index.cjs",
"types": "./lib/index.d.ts",
"bin": {
"unleashed-typescript": "./bin/index.cjs"
},
"files": [
"bin",
"lib",
"build",
"fixtures",
"unleashed-typescript"
],
"scripts": {
"build": "tsup",
"check": "tsc --noEmit",
"dev": "ts-node src/index.ts",
"prepare": "npx simple-git-hooks",
"postinstall": "node ./bin/index.cjs",
"unpatch": "node ./bin/index.cjs --unpatch",
"semantic-release": "semantic-release --branches main",
"format": "prettier **/* --write --cache --ignore-unknown",
"lint": "eslint src --fix --max-warnings=0",
"test": "pnpm check && pnpm lint"
},
"prettier": "@skarab/prettier-config",
"devDependencies": {
"@skarab/eslint-config": "^1.0.2",
"@skarab/prettier-config": "^1.2.2",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.6.1",
"eslint": "^8.20.0",
"fs-extra": "^10.1.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"simple-git-hooks": "^2.8.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"tsup": "^6.2.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"typescript": "*"
},
"keywords": [
"typescript",
"unleashed",
"typecheck",
"internal",
"tssert",
"types"
],
"engines": {
"node": ">=12",
"pnpm": ">=6"
},
"packageManager": "[email protected]"
}