-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.63 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.63 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
{
"name": "ts-morph-structures",
"version": "1.2.1",
"description": "Structure classes for ts-morph, including type structure classes.",
"main": "dist/exports.js",
"typings": "dist/exports.d.ts",
"files": [
"dist/exports.js",
"dist/exports.d.ts"
],
"type": "module",
"engines": {
"node": ">=18.19"
},
"scripts": {
"clean": "node ./gulp-utilities/cleanTSC_output.js",
"tsc-buildsystem": "tsc --project ./tsconfig-gulp.json",
"build": "npm run clean && npm run tsc-buildsystem && node --expose-gc ./node_modules/gulp/bin/gulp.js",
"debug": "npm run clean && npm run tsc-buildsystem && node --inspect-brk --expose-gc ./node_modules/gulp/bin/gulp.js",
"tasks": "npm run clean && npm run tsc-buildsystem && gulp --tasks",
"build-stage-one": "npm run clean && npm run tsc-buildsystem && node --expose-gc ./node_modules/gulp/bin/gulp.js stage_one",
"build-stage-two": "npm run clean && npm run tsc-buildsystem && node --expose-gc ./node_modules/gulp/bin/gulp.js stage_two",
"build-stage-three": "npm run clean && npm run tsc-buildsystem && node --expose-gc ./node_modules/gulp/bin/gulp.js stage_three",
"use-cases": "npm run clean && npm run tsc-buildsystem && node --expose-gc ./node_modules/gulp/bin/gulp.js use-cases",
"debug-stage-one": "npm run clean && npm run tsc-buildsystem && node --inspect-brk --expose-gc ./node_modules/gulp/bin/gulp.js stage_one",
"debug-stage-two": "npm run clean && npm run tsc-buildsystem && node --inspect-brk --expose-gc ./node_modules/gulp/bin/gulp.js stage_two",
"debug-stage-three": "npm run clean && npm run tsc-buildsystem && node --inspect-brk --expose-gc ./node_modules/gulp/bin/gulp.js stage_three",
"debug-use-cases": "npm run clean && npm run tsc-buildsystem && node --inspect-brk --expose-gc ./node_modules/gulp/bin/gulp.js use-cases",
"is-repo-clean": "npm run clean && npm run tsc-buildsystem && node ./gulp-utilities/assertRepoIsClean.js",
"diff-stages": "diff -p -U 8 -N -r ./stage_2_snapshot/snapshot/source ./stage_3_integration/snapshot/source"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajvincent/ts-morph-structures.git"
},
"keywords": [
"ts-morph",
"typescript"
],
"author": "Alexander J. Vincent <ajvincent@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ajvincent/ts-morph-structures/issues"
},
"homepage": "https://github.com/ajvincent/ts-morph-structures#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@microsoft/api-documenter": "^7.23.38",
"@microsoft/api-extractor": "^7.43.0",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/node18": "^18.2.4",
"@types/eslint__js": "^8.42.3",
"@types/gulp": "^4.0.17",
"@types/jasmine": "^5.1.5",
"@types/node": "^20.17.11",
"@types/which": "^3.0.4",
"chalk": "^5.4.1",
"eslint": "^9.17.0",
"gulp": "^5.0.0",
"jasmine": "^5.5.0",
"prettier": "^3.4.2",
"rollup": "^4.29.1",
"rollup-plugin-dts": "^6.1.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"type-fest": "^4.31.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"which": "^4.0.0"
},
"dependencies": {
"mixin-decorators": "^1.0.1"
},
"peerDependencies": {
"ts-morph": "^25.0.0"
},
"imports": {
"#stage_one/*": "./stage_1_snapshot/*",
"#stage_two/fixtures/*": "./stage_2_snapshot/fixtures/*",
"#stage_two/generation/*": "./stage_2_generation/*",
"#stage_two/snapshot/*": "./stage_2_snapshot/snapshot/*",
"#stage_three/generation/*": "./stage_3_generation/*",
"#utilities/*": "./utilities/*",
"#gulp-utilities/*": "./gulp-utilities/*"
}
}