-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.21 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
76
77
78
{
"name": "@rtivital/ts-package-template",
"description": "A template for TypeScript packages",
"packageManager": "yarn@4.17.0",
"version": "0.8.1",
"type": "module",
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"author": "Vitaly Rtishchev <rtivital@gmail.com>",
"engines": {
"node": ">=16.6.0"
},
"keywords": [
"typescript",
"template"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rtivital/ts-package-template.git"
},
"bugs": {
"url": "https://github.com/rtivital/ts-package-template/issues"
},
"homepage": "https://github.com/rtivital/ts-package-template#readme",
"scripts": {
"clean": "rimraf dist",
"generate-dts": "tsc --project tsconfig.build.json",
"build": "rolldown -c rolldown.config.js && npm run generate-dts",
"pack:test": "tsx scripts/pack-test",
"format:check": "oxfmt --check .",
"format:write": "oxfmt --write .",
"typecheck": "tsc --noEmit",
"lint": "oxlint src scripts",
"jest": "jest",
"test": "npm run format:check && npm run typecheck && npm run lint && npm run jest && npm run build && npm run pack:test && npm run knip",
"jest:coverage": "jest --coverage",
"jest:watch": "jest --watch",
"release": "npm test && tsx scripts/release",
"knip": "knip",
"size": "npm run build && size-limit",
"analyze": "npm run size"
},
"devDependencies": {
"@size-limit/file": "^12.0.0",
"@types/fs-extra": "^11",
"@types/jest": "^30.0.0",
"@types/node": "^26.0.0",
"@types/signale": "^1",
"@types/yargs": "^17.0.33",
"chalk": "^5.6.2",
"fs-extra": "^11.3.1",
"jest": "^30.1.3",
"knip": "^6.0.0",
"new-github-release-url": "^2.0.0",
"open": "^11.0.0",
"oxfmt": "^0.55.0",
"oxlint": "^1.58.0",
"rimraf": "^6.0.1",
"rolldown": "^1.0.0-rc.9",
"rollup-plugin-visualizer": "^7.0.0",
"signale": "^1.4.0",
"simple-git": "^3.28.0",
"size-limit": "^12.0.0",
"ts-jest": "^29.4.1",
"tsx": "^4.20.5",
"typescript": "^6.0.2",
"version-next": "^1.0.2",
"yargs": "^18.0.0",
"zx": "^8.8.1"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 KB"
}
]
}