-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 931 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 931 Bytes
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
{
"name": "@repo/typescript-config",
"version": "0.0.0",
"private": true,
"license": "MIT",
"main": "index.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts"
},
"./base.json": "./base.json",
"./react.json": "./react.json",
"./node.json": "./node.json",
"./types": "./types/index.d.ts",
"./types/*": "./types/*"
},
"scripts": {
"lint": "echo 'No linting needed for config package'",
"prettier": "echo 'No formatting needed for config package'",
"check-types": "echo 'No type checking needed for config package'",
"validate": "echo 'No validation needed for config package'",
"test": "echo 'No tests for config package'",
"build": "echo 'No build needed for config package'"
},
"dependencies": {
"@total-typescript/ts-reset": "^0.6.1"
},
"files": [
"base.json",
"react.json",
"node.json",
"types/"
],
"publishConfig": {
"access": "public"
}
}