-
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) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "@lufomatics/tsconfig",
"version": "0.0.0",
"description": "Curated reusable tsconfig base for modern Node ESM, with clean defaults and easy escape hatches",
"homepage": "https://github.com/lufomatics/tsconfig#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lufomatics/tsconfig.git"
},
"bugs": {
"url": "https://github.com/lufomatics/tsconfig/issues"
},
"license": "Apache-2.0",
"author": "Lucas Mello <contact@melucas.com> (https://melucas.com/)",
"engines": {
"node": ">=22"
},
"type": "module",
"main": "tsconfig.json",
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"test": "node scripts/test-compilation.js && node scripts/test-examples.js",
"test:compilation": "node scripts/test-compilation.js",
"test:examples": "node scripts/test-examples.js",
"validate": "npm test",
"prepack": "npm test"
},
"dependencies": {},
"devDependencies": {
"typescript": "^5.5.0",
"jsonc-parser": "^3.2.0"
},
"optionalDependencies": {}
}