-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.83 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
76
77
78
79
80
{
"name": "@chatie/tsconfig",
"version": "4.9.2",
"description": "tsconfig.json inheritance via Node.js packages",
"tsconfig": "tsconfig.json",
"type": "module",
"exports": {
".": {
"import": "./tsconfig.json",
"require": "./tsconfig.json"
}
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"dist": "echo dist",
"lint": "echo lint",
"postinstall": "node bin/install.js",
"test": "npm run lint && npm run test:unit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" tap \"tests/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chatie/tsconfig.git"
},
"keywords": [
"tsconfig",
"base",
"inheritance",
"share"
],
"author": {
"name": "Huan LI",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Chatie/tsconfig/issues"
},
"homepage": "https://github.com/Chatie/tsconfig#readme",
"devDependencies": {
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@types/json5": "2.2.0",
"file-box": "^1.4.15",
"is-my-json-valid": "^2.20.6",
"json5": "^2.2.3"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"files": [
"tsconfig.json",
"bin/install.js"
],
"dependencies": {
"@swc/core": "^1.3.38",
"@swc/helpers": "^0.4.14",
"@types/node": "^18.14.6",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"pkg-jq": "^0.2.11",
"pkg-up": "3.1.0",
"regenerator-runtime": "^0.13.11",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tstest": "^1.2.8",
"type-fest": "^3.6.1",
"typescript": "^4.9.5"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}