forked from egoist/ts-lib-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 951 Bytes
/
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
{
"name": "my-ts-lib",
"version": "0.0.0",
"description": "My awesome typescript library",
"bugs": {
"url": "https://github.com/SevenOutman/ts-lib-starter/issues"
},
"repository": "github:SevenOutman/ts-lib-starter",
"license": "MIT",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run build-fast -- --dts-resolve",
"build-fast": "tsup src/index.ts --format cjs,esm",
"prepublishOnly": "pnpm run build",
"test": "vitest run"
},
"devDependencies": {
"@egoist/prettier-config": "1.0.0",
"prettier": "^2.8.4",
"prettier-plugin-packagejson": "^2.4.3",
"tsup": "6.4.0",
"typescript": "^4.9.5",
"vitest": "0.12.6"
},
"packageManager": "pnpm@8.9.2",
"publishConfig": {
"access": "public"
}
}