-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
70 lines (70 loc) · 1.74 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
62
63
64
65
66
67
68
69
70
{
"name": "tsc-watch",
"version": "6.2.1",
"description": "The TypeScript compiler with onSuccess command",
"scripts": {
"clean": "rimraf dist && rimraf tmp",
"prepublishOnly": "npm run build && crlf --set=LF index.js client.js dist/**/*",
"test": "npm run build && jest --verbose --runInBand",
"build": "npm run clean && npm run build-lib && npm run build-client",
"build-lib": "tsc -p tsconfig.json",
"build-client": "tsc -p tsconfig-client.json",
"watch-lib": "tsc -p tsconfig.json --watch"
},
"bin": {
"tsc-watch": "dist/lib/tsc-watch.js"
},
"files": [
"dist/**/*",
"index.js",
"client.js",
"client.d.ts"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gilamran/tsc-watch.git"
},
"keywords": [
"TypeScript"
],
"main": "./dist/client/index.js",
"types": "./dist/client/index.d.ts",
"engines": {
"node": ">=12.12.0"
},
"author": "Gil Amran",
"license": "MIT",
"bugs": {
"url": "https://github.com/gilamran/tsc-watch/issues"
},
"homepage": "https://github.com/gilamran/tsc-watch#readme",
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 100
},
"dependencies": {
"cross-spawn": "^7.0.3",
"node-cleanup": "^2.1.2",
"ps-tree": "^1.2.0",
"string-argv": "^0.3.1"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^29.5.1",
"@types/node": "^12.12.0",
"@types/node-cleanup": "^2.1.2",
"@types/ps-tree": "^1.1.2",
"crlf": "^1.1.1",
"fs-extra": "^11.1.1",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.6.3"
}
}