-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
146 lines (146 loc) · 4.95 KB
/
package.json
File metadata and controls
146 lines (146 loc) · 4.95 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "ts-data-forge",
"version": "6.9.2",
"private": false,
"keywords": [
"typescript",
"utility",
"types",
"static-typing",
"functional-programming",
"type-guard"
],
"repository": {
"type": "git",
"url": "git+https://github.com/noshiro-pf/ts-data-forge.git"
},
"license": "Apache-2.0",
"author": "noshiro-pf <noshiro.pf@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/types.d.mts",
"default": "./dist/entry-point.mjs"
}
}
},
"module": "./dist/entry-point.mjs",
"types": "./dist/types.d.mts",
"files": [
"src",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsx ./scripts/cmd/build.mts",
"build:min": "tsx ./scripts/cmd/build.mts --skip-check",
"check:ext": "tsx ./scripts/cmd/check-ext.mts",
"check-all": "tsx ./scripts/cmd/check-all.mts",
"clean": "pnpm run /clean:.*/",
"clean:logs": "npx rimraf ./*.log",
"codemod": "run-s codemod:uncommitted:as-const fmt codemod:uncommitted:readonly fmt",
"codemod:full": "run-s codemod:full:as-const fmt codemod:full:readonly fmt",
"codemod:full:as-const": "append-as-const '{src,scripts,samples,test}/**/*.{mts,tsx}'",
"codemod:full:readonly": "convert-to-readonly '{src,scripts,samples,test}/**/*.{mts,tsx}'",
"codemod:uncommitted:as-const": "append-as-const --uncommitted '{src,scripts,samples,test}/**/*.{mts,tsx}'",
"codemod:uncommitted:readonly": "convert-to-readonly --uncommitted '{src,scripts,samples,test}/**/*.{mts,tsx}'",
"cspell": "cspell \"**\" --gitignore --gitignore-root ./ --no-progress",
"doc": "tsx ./scripts/cmd/gen-docs.mts",
"doc:embed": "tsx ./scripts/cmd/embed-examples.mts",
"doc:embed:jsdoc": "tsx ./scripts/cmd/embed-examples-in-jsdoc.mts",
"doc:preview": "vite preview --config ./configs/vite.doc.config.mts",
"doc:watch": "typedoc --options ./configs/typedoc.config.mjs --watch",
"fmt": "format-uncommitted",
"fmt:diff": "format-diff-from origin/main",
"fmt:full": "prettier --write .",
"gh:apply-all": "gh-apply-all",
"gh:apply-repository-settings": "gh-apply-repository-settings",
"gh:apply-rulesets": "gh-apply-rulesets",
"gh:apply-variables": "gh-apply-variables",
"gh:backup-all": "gh-backup-all",
"gh:backup-repository-settings": "gh-backup-repository-settings",
"gh:backup-rulesets": "gh-backup-rulesets",
"gi": "run-s gi:src fmt",
"gi:src": "tsx scripts/cmd/gen-index.mts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"md": "markdownlint-cli2",
"test": "pnpm run z:vitest:node run",
"test:browser": "pnpm run z:vitest --project='Browser' run",
"test:cov": "pnpm run z:vitest:node run --coverage",
"test:cov:ui": "vite preview --outDir ./coverage",
"test:ui": "pnpm run z:vitest:node --ui",
"testw": "pnpm run z:vitest:node watch",
"tsc": "tsc --noEmit",
"tscw": "tsc --noEmit --watch -p ./tsconfig.json",
"type-check": "tsc --noEmit",
"update-packages": "pnpm update --latest",
"z:vitest": "vitest --config ./configs/vitest.config.mts",
"z:vitest:node": "pnpm run z:vitest --project='Node.js'"
},
"dependencies": {
"@sindresorhus/is": "^8.0.0",
"ts-type-forge": "^2.4.0"
},
"devDependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@mui/material": "9.0.0",
"@rollup/plugin-replace": "6.0.3",
"@rollup/plugin-strip": "3.0.4",
"@rollup/plugin-typescript": "12.3.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@semantic-release/release-notes-generator": "14.1.0",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@vitest/browser-playwright": "4.1.4",
"@vitest/coverage-v8": "4.1.4",
"@vitest/ui": "4.1.4",
"conventional-changelog-conventionalcommits": "9.3.1",
"cspell": "10.0.0",
"dedent": "^1.7.2",
"eslint": "9.39.4",
"eslint-config-typed": "4.8.0",
"github-settings-as-code": "1.2.3",
"immer": "11.1.4",
"jiti": "2.6.1",
"markdownlint": "0.40.0",
"markdownlint-cli2": "0.22.0",
"npm-run-all2": "8.0.4",
"playwright": "1.59.1",
"prettier": "3.8.3",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-packagejson": "3.0.2",
"react": "^19.2.5",
"rollup": "4.60.1",
"semantic-release": "25.0.3",
"ts-codemod-lib": "^2.1.2",
"ts-repo-utils": "9.0.1",
"tslib": "2.8.1",
"tsx": "4.21.0",
"typedoc": "0.28.19",
"typedoc-github-theme": "0.4.0",
"typescript": "5.9.3",
"vite": "8.0.8",
"vitest": "4.1.4"
},
"peerDependencies": {
"typescript": ">=4.8"
},
"packageManager": "pnpm@10.33.1",
"engines": {
"node": ">=22.18.0",
"pnpm": ">=9.0.0"
},
"volta": {
"node": "25.9.0"
}
}