-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.39 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
{
"name": "@sonnyt/just",
"version": "0.0.6",
"description": "Zero config TypeScript build and development toolkit.",
"files": [
"README.md",
"LICENSE",
"dist/**/*",
"register.js",
"just.tsconfig.json"
],
"bin": {
"just": "./dist/just.js"
},
"scripts": {
"build": "npx swc ./src -d dist",
"watch": "npx swc ./src -d dist -w",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sonnyt/just.git"
},
"keywords": [
"typescript",
"watch",
"build",
"development"
],
"author": {
"name": "Sonny T.",
"email": "[email protected]",
"url": "https://sonnyt.com"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/sonnyt/just/issues"
},
"homepage": "https://github.com/sonnyt/just#readme",
"dependencies": {
"@swc/core": "1.2.205",
"chokidar": "^3.5.3",
"colors": "^1.4.0",
"commander": "^11.1.0",
"dir-glob": "^3.0.1",
"dotenv": "^16.3.1",
"get-port": "^5.1.1",
"glob": "^10.3.10",
"typescript": "^5.3.3",
"which": "^4.0.0"
},
"devDependencies": {
"@swc/cli": "^0.1.63",
"@types/dir-glob": "^2.0.3",
"@types/eslint": "^8.44.9",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/which": "^3.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2"
}
}