-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
61 lines (61 loc) · 2.04 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ts-blank-space",
"description": "A small, fast, pure JavaScript type-stripper that uses the official TypeScript parser.",
"version": "0.5.0",
"license": "Apache-2.0",
"homepage": "https://bloomberg.github.io/ts-blank-space",
"contributors": [
"Ashley Claymore <[email protected]>",
"Kubilay Kahveci <[email protected]>",
"Rob Palmer <[email protected]>",
"Thomas Chetwin <[email protected]>",
"Titian Cernicova-Dragomir <[email protected]>"
],
"type": "module",
"main": "./out/index.js",
"exports": {
".": "./out/index.js",
"./package.json": "./package.json",
"./register": "./loader/register.js"
},
"engines": {
"node": ">=18.0.0"
},
"types": "./out/index.d.ts",
"dependencies": {
"typescript": "5.1.6 - 5.7.x"
},
"imports": {
"#r": "ts-blank-space-lkg/register"
},
"devDependencies": {
"@types/node": "^20.9.4",
"prettier": "3.3.3",
"ts-blank-space-lkg": "npm:ts-blank-space@^0.3.3333"
},
"scripts": {
"build": "node --import=#r ./scripts/build.ts",
"check": "tsc -p ./src/tsconfig.json --noEmit",
"gen-types": "tsc -p ./src/tsconfig.json --emitDeclarationOnly",
"fixtures": "node --import=#r ./tests/fixture/_run.ts",
"fixtures:watch": "node --watch-path ./tests/fixture/cases --import=#r ./tests/fixture/_run.ts",
"pretest": "npm run build",
"test": "node --test --import=#r ./tests/*.test.ts",
"test-ecosystem": "node --test --import=#r ./tests/ecosystem/ecosystem.test.ts",
"format": "prettier . -w",
"format:check": "prettier . -c",
"prepack": "npm run gen-types;npm run build;"
},
"files": [
"!tests",
"!perf",
"out/*.js",
"out/*.d.ts",
"loader/*.js",
"loader/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bloomberg/ts-blank-space.git"
}
}