forked from dsherret/ts-morph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.44 KB
/
package.json
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
{
"name": "@ts-morph/bootstrap",
"version": "0.23.0",
"description": "API for getting quickly set up with the TypeScript Compiler API.",
"keywords": [
"typescript",
"compiler",
"bootstrap"
],
"main": "dist/ts-morph-bootstrap.js",
"types": "lib/ts-morph-bootstrap.d.ts",
"author": "David Sherret",
"license": "MIT",
"repository": "git+https://github.com/dsherret/ts-morph.git",
"scripts": {
"build": "npm run build:declarations && npm run build:node && npm run build:deno",
"build:node": "rimraf dist && npm run rollup",
"build:deno": "rimraf dist-deno && npm run rollup -- --environment BUILD:deno && deno run -A scripts/buildDeno.ts",
"build:declarations": "deno run -A scripts/buildDeclarations.ts",
"test": "cross-env TS_NODE_TRANSPILE_ONLY=\"true\" mocha",
"test:ci": "npm run test",
"test:debug": "npm run test --inspect-brk",
"test:ts-versions": "deno run -A scripts/test/testTypeScriptVersions.ts",
"rollup": "rollup -c"
},
"dependencies": {
"@ts-morph/common": "~0.23.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.25",
"chai": "^4.3.10",
"cross-env": "^7.0.3",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"rollup": "=4.12.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "~5.4.2"
},
"publishConfig": {
"access": "public"
}
}