-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.39 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
79
80
81
82
83
84
85
{
"name": "ts-define-constant",
"type": "module",
"version": "2.0.1",
"description": "Type safe utility for defining static constants with automatic type narrowing and additional helper functions",
"author": "Daniel Waltz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/danielwaltz/ts-define-constant.git"
},
"keywords": [
"constant",
"narrowing",
"type-narrowing",
"typescript",
"utility"
],
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsdown",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepack": "npm run build",
"release": "standard-version",
"semantic-release": "semantic-release",
"test": "npm run prepack && npm run lint && npm run type-check && npm run test:unit:run && npm run test:unit:typecheck:run && npm run test:publish",
"test:attw": "npx -y @arethetypeswrong/cli@latest --pack --profile esm-only",
"test:publint": "npx -y publint@latest",
"test:publish": "npm run test:attw && npm run test:publint",
"test:unit": "vitest",
"test:unit:run": "vitest run",
"test:unit:typecheck": "vitest --typecheck.only",
"test:unit:typecheck:run": "vitest run --typecheck.only",
"type-check": "tsc --noEmit"
},
"inlinedDependencies": {
"type-fest": "5.7.0"
},
"devDependencies": {
"@danielwaltz/eslint-config": "^3.6.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@types/node": "~24.13.2",
"eslint": "^10.6.0",
"jiti": "^2.7.0",
"prettier": "^3.8.5",
"semantic-release": "^25.0.5",
"standard-version": "^9.5.0",
"tsdown": "^0.22.3",
"type-fest": "^5.7.0",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">=10.0.0"
},
"devEngines": {
"packageManager": {
"name": "npm"
},
"runtime": {
"name": "node",
"version": "24.18.0"
}
},
"allowScripts": {
"fsevents@2.3.3": true
}
}