-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1011 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
41
{
"name": "define-exact",
"version": "1.0.0",
"description": "A TypeScript utility function for defining exact subtypes of the specified type.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [
"typescript",
"utility",
"types"
],
"scripts": {
"test": "vitest run",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"devDependencies": {
"@types/node": "^22.7.5",
"gts": "^6.0.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vvasin/define-exact.git"
},
"author": "Vitaly Vasin <[email protected]>",
"bugs": {
"url": "https://github.com/vvasin/define-exact/issues"
},
"homepage": "https://github.com/vvasin/define-exact#readme"
}