-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.1 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
{
"name": "good-typescript-library-template",
"version": "0.0.1",
"description": "A neg4n's template for creating TypeScript libraries",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs",
"default": "./dist/index.esm.js"
}
},
"sideEffects": false,
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"build:check": "pnpm run build && pnpm run attw",
"dev": "rollup -c --watch",
"typecheck": "tsc --noEmit",
"attw": "attw --pack .",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepare": "husky",
"prepublishOnly": "pnpm build",
"release": "semantic-release"
},
"lint-staged": {
"*.{js,ts,json}": "biome check --write --no-errors-on-unmatched"
},
"keywords": [
"typescript",
"library",
"template"
],
"author": {
"email": "neg4n@icloud.com",
"name": "neg4n",
"url": "https://github.com/neg4n"
},
"license": "MIT",
"packageManager": "pnpm@10.8.0",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "2.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.3",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.3",
"@vitest/coverage-v8": "3.2.4",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"rollup": "^4.44.0",
"rollup-plugin-dts": "^6.2.1",
"semantic-release": "24.2.5",
"tslib": "^2.8.1",
"type-fest": "^4.41.0",
"typescript": "^5.8.3",
"vitest": "3.2.4"
}
}