-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 962 Bytes
/
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
{
"name": "type-testing",
"version": "0.2.0",
"engines": {
"node": ">= 20.x"
},
"repository": "https://github.com/MichiganTypeScript/type-testing",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"description": "🌱 A micro library for testing your TypeScript types",
"scripts": {
"test:code": "tsc",
"test:build": "attw --pack",
"test": "pnpm run test:code && pnpm run test:build",
"build:markdown": "tsx ./scripts/generate.ts",
"clean": "tsx ./scripts/clean.mts",
"build:code": "tsc --project tsconfig.build.json",
"build": "pnpm clean && pnpm build:code && pnpm build:markdown"
},
"license": "MIT",
"keywords": [
"typescript",
"ts",
"types",
"utility",
"util",
"utilities",
"testing",
"type",
"generics"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.11.0",
"@types/node": "^20.8.2",
"tsx": "^3.13.0",
"typescript": "^5.2.2"
}
}