-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) 路 1.98 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) 路 1.98 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "typescript-open-source-template",
"description": "馃摐 My template for creating open-source projects",
"version": "1.0.0",
"type": "module",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublish:npm": "npm run build",
"publish:npm": "release-it",
"prepublish:dev": "npm run build",
"publish:dev": "npm publish --access public --tag dev",
"prepare": "husky",
"format": "prettier --write \"{src,apps,libs,test}/**/*.ts\"",
"lint": "oxlint --type-aware --deny-warnings src",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:ci": "vitest run --coverage"
},
"lint-staged": {
"*.ts": [
"npm run format",
"npm run test:ci"
]
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"author": "Alexey Filippov <socket.someone@gmail.com>",
"license": "MIT",
"keywords": [],
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "21.2.2",
"@commitlint/config-angular": "21.2.2",
"@release-it/conventional-changelog": "^12.0.0",
"@types/node": "26.4.0",
"@vitest/coverage-v8": "4.1.11",
"eslint": "^10.9.1",
"eslint-plugin-perfectionist": "5.11.0",
"eslint-plugin-prettier": "5.5.6",
"husky": "9.1.7",
"lint-staged": "^17.4.1",
"oxlint": "1.81.0",
"oxlint-tsgolint": "7.0.2001",
"prettier": "3.9.6",
"reflect-metadata": "0.2.2",
"release-it": "21.0.2",
"rimraf": "6.1.3",
"typescript": "7.0.2",
"vitest": "4.1.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SocketSomeone/typescript-open-source-template.git"
},
"homepage": "https://github.com/SocketSomeone/typescript-open-source-template#readme",
"engines": {
"node": "^20.19.0 || >=22.13.0",
"npm": ">=8.6.0"
}
}