-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 897 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 897 Bytes
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
{
"name": "ts-lib-starter",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"build:raw": "tsup src/index.ts --dts --no-config",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/mosuzi/ts-lib-starter.git"
},
"author": "mosuzi",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "2.8.7",
"terser": "^5.16.8",
"tsup": "^6.7.0",
"typescript": "^5.0.3"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
}
}