-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ts-lib-extended",
"version": "4.0.0",
"description": "Additional types and tools for typescript",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc -p ./tsconfig.prod.json && tsc-alias",
"build:dev": "tsc -p ./tsconfig.dev.json && tsc-alias",
"build:validate": "npm run build && npm test",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest watch",
"reset:modules": "npx --quiet -y rimraf node_modules/ package-lock.json",
"reset:creation": "npx --quiet -y rimraf dist/ tests/reports/",
"reset": "npm run reset:creation && npm run reset:modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maddin1502/ts-lib-extended.git"
},
"keywords": [
"typescript",
"types",
"extended",
"Events",
"EventHandler",
"Disposable",
"Dictionary",
"Enum"
],
"author": "maddin1502",
"license": "MIT",
"bugs": {
"url": "https://github.com/maddin1502/ts-lib-extended/issues"
},
"homepage": "https://github.com/maddin1502/ts-lib-extended#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/node": "^20.16.13",
"@vitest/coverage-v8": "^2.1.3",
"@vitest/ui": "^2.1.3",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"tsc-alias": "^1.8.10",
"typescript": "~5.5",
"typescript-eslint": "^8.10.0",
"vitest": "^2.1.3"
}
}