generated from CodelyTV/typescript-basic-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "@codelytv/primitives-type",
"version": "2.0.0",
"description": "Type entity primitives from value objects",
"keywords": [
"typescript",
"type",
"toPrimitive",
"Primitives",
"ts",
"types",
"utility",
"util",
"utilities"
],
"scripts": {
"build": "tsc",
"lint": "eslint src tests eslint.config.mjs jest.config.js",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/CodelyTV/typescript-primitives-type"
},
"author": "codelytv",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/CodelyTV/typescript-primitives-type/issues"
},
"homepage": "https://github.com/CodelyTV/typescript-primitives-type#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^8.56.0",
"eslint-config-codely": "^4.4.0",
"eslint-import-resolver-typescript": "^3.7.0",
"expect-type": "^1.1.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}