-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.61 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.61 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
{
"type": "module",
"name": "tfusion",
"description": "Flatten complex TypeScript types into readable, inspectable plaintext structures",
"version": "0.0.24",
"packageManager": "pnpm@10.20.0",
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.15.0",
"onFail": "download"
}
},
"author": "Slee Woo",
"license": "MIT",
"repository": "https://github.com/sleewoo/tfusion",
"publishConfig": {
"access": "public"
},
"files": [
"pkg/*"
],
"exports": {
".": {
"types": "./pkg/src/index.d.ts",
"default": "./pkg/index.js"
}
},
"scripts": {
"// ✨ build": "",
"build": "esbuilder ./src/index -o pkg -l .hbs=text -s ./scripts/build/",
"prebuild:tests": "esbuilder ./src/test-factory/run -l .hbs=text -o ./test",
"build:tests": "node ./test/run",
"postbuild:tests": "rm ./test/run.js*",
"// ✨ test": "",
"test": "tsc -p ./test/tsconfig.json",
"// ✨ publish": "",
"prepub": "./scripts/publish/prepare",
"pub": "changeset publish",
"pub:tags": "git push --follow-tags"
},
"dependencies": {
"crc": "^4.3.2",
"ts-morph": "^28.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@changesets/cli": "^2.31.0",
"@libconfig/biome": "^0.0.7",
"@libconfig/typescript": "^0.0.6",
"@libutil/esbuilder": "^0.0.7",
"@libutil/render": "^0.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.6.0",
"fs-extra": "^11.3.4",
"resolve-tspaths": "^0.8.23",
"rimraf": "^6.1.3",
"tinyglobby": "^0.2.16",
"tsafe": "^1.8.12",
"typescript": "^6.0.3"
}
}