-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "typescript-typelevel",
"version": "0.9.0",
"description": "Lift your code to the next level.",
"keywords": [
"type level programming",
"typescript",
"utility types"
],
"files": [
"lib",
"src"
],
"types": "lib/index.d.ts",
"source": "src/index.ts",
"scripts": {
"prepare": "npm run clean && npm run build && npm run lint",
"build": "tsc",
"build:watch": "tsc -w",
"clean": "shx rm -rf lib",
"lint": "eslint src test --ext .ts",
"test": "tsc --noEmit -p tsconfig.test.json",
"test:watch": "tsc --noEmit -p tsconfig.test.json -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danieldietrich/typelevel.git"
},
"homepage": "https://typelevel.io",
"bugs": {
"url": "https://github.com/danieldietrich/typelevel/issues"
},
"author": {
"name": "Daniel Dietrich",
"email": "[email protected]",
"url": "https://danieldietrich.dev"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-plugin-typescript-enum": "^2.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"shx": "^0.3.4",
"typelevel-assert": "^0.1.1",
"typescript": "^4.8.4"
}
}