-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.56 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "typescript-swc-starter",
"type": "module",
"version": "1.1.7",
"author": "maxgfr",
"license": "MIT",
"description": "A minimalist typescript swc starter",
"main": "./dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/maxgfr/typescript-swc-starter.git"
},
"bugs": {
"url": "https://github.com/maxgfr/typescript-swc-starter/issues"
},
"homepage": "https://github.com/maxgfr/typescript-swc-starter#readme",
"files": [
"dist"
],
"keywords": [
"boilerplate",
"typescript",
"release",
"swc"
],
"scripts": {
"prepare": "husky install",
"start:cjs": "node ./dist/index.cjs",
"start:esm": "node ./dist/index.mjs",
"dev": "nodemon",
"develop": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./src/index.ts",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"clean": "rimraf build && rimraf dist",
"build": "swc ./src -d build",
"build:watch": "swc ./src -d build -w",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"prettier": "prettier '**/*.{ts,json,md}'",
"prettier:write": "prettier --write '**/*.{ts,json,md}'",
"type-check": "tsc --noEmit",
"lint-staged": "lint-staged",
"release": "semantic-release",
"bundle": "unbuild"
},
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@swc/cli": "0.5.2",
"@swc/core": "1.10.4",
"@swc/jest": "0.2.37",
"@types/jest": "29.5.14",
"@types/node": "20.17.10",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "^9.0.0",
"jest": "29.7.0",
"lint-staged": "^15.0.0",
"nodemon": "3.1.9",
"prettier": "3.4.2",
"regenerator-runtime": "^0.14.0",
"rimraf": "5.0.10",
"semantic-release": "^23.0.0",
"ts-node": "^10.9.1",
"typescript": "5.7.2",
"unbuild": "^2.0.0"
},
"resolutions": {
"wrap-ansi": "7.0.0"
}
}