-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.53 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
{
"name": "ts-pkg",
"version": "0.2.0",
"description": "Boilerplate to create npm packages in TypeScript.",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm clean && rollup -c --bundleConfigAsCjs",
"build:watch": "pnpm clean && rollup -cw --bundleConfigAsCjs",
"clean": "rm -rf ./dist",
"prepare": "husky install",
"test:watch": "jest --watch",
"test": "jest",
"lint": "eslint ./src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucagoslar/ts-pkg.git"
},
"keywords": [
"npm",
"boilerplate",
"workflow",
"typescript",
"jest"
],
"author": "Luca Goslar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lucagoslar/ts-pkg/issues"
},
"homepage": "https://github.com/lucagoslar/ts-pkg#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"prettier": "^3.0.3",
"rollup": "^4.1.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"pnpm": {
"overrides": {
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"@babel/traverse@<7.23.2": ">=7.23.2"
}
}
}