-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 897 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 897 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
{
"name": "ts-type-challenges",
"version": "0.0.1",
"description": "https://github.com/type-challenges/type-challenges",
"repository": {
"url": "https://github.com/oathompsonjones/ts-type-challenges.git"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": "./build/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "jest",
"build": "tsc --noEmit",
"start": "node ."
},
"author": "oathompsonjones",
"license": "MIT",
"devDependencies": {
"@oathompsonjones/eslint-config": "^0.0.65",
"@oathompsonjones/ts-config": "^0.0.25",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.8.2",
"eslint": "^8.50.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@type-challenges/utils": "^0.1.1"
}
}