-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.5 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
{
"name": "@stephansama/test-lib",
"type": "module",
"version": "0.4.2",
"packageManager": "pnpm@10.27.0",
"description": "My awesome typescript library",
"repository": {
"type": "git",
"url": "git+https://github.com/stephansama/jsr-test-lib.git"
},
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"preversion": "multipublish",
"version": "changeset version",
"publish": "changeset publish",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsgo --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@sxzz/eslint-config": "^7.4.4",
"@sxzz/prettier-config": "^2.2.6",
"@types/node": "^25.0.3",
"@typescript/native-preview": "7.0.0-dev.20260104.1",
"bumpp": "^10.3.2",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"tsdown": "^0.18.4",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"prettier": "@sxzz/prettier-config",
"dependencies": {
"@stephansama/multipublish": "https://pkg.pr.new/stephansama/packages/@stephansama/multipublish@918dba2"
}
}