-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.49 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.49 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "foy",
"version": "1.0.1",
"description": "A simple, light-weight and modern task runner for general purpose.",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"types": "./lib/index.d.ts",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./exec": {
"import": "./lib/exec.js",
"types": "./lib/exec.d.ts"
},
"./fs": {
"import": "./lib/fs.js",
"types": "./lib/fs.d.ts"
},
"./logger": {
"import": "./lib/logger.js",
"types": "./lib/logger.d.ts"
},
"./task": {
"import": "./lib/task.js",
"types": "./lib/task.d.ts"
},
"./task-manager": {
"import": "./lib/task-manager.js",
"types": "./lib/task-manager.d.ts"
},
"./dep-builder": {
"import": "./lib/dep-builder.js",
"types": "./lib/dep-builder.d.ts"
},
"./utils": {
"import": "./lib/utils.js",
"types": "./lib/utils.d.ts"
}
},
"scripts": {
"foy": "tsx ./src/cli.ts",
"build": "npm run foy -- build",
"test": "npm run foy -- test",
"test:update-snap": "npm run foy -- test:update-snap",
"watch": "npm run foy -- watch"
},
"bin": {
"foy": "./lib/cli.js"
},
"pre-commit": [],
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zaaack/foy.git"
},
"keywords": [
"make",
"build",
"tools",
"cli"
],
"author": "Zack Young",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaaack/foy/issues"
},
"homepage": "https://github.com/zaaack/foy#readme",
"devDependencies": {
"@types/ejs": "^3.0.4",
"@types/jasmine": "^3.5.14",
"@types/marked": "^1.1.0",
"@types/node": "22.7.5",
"axios": "^0.20.0",
"ejs": "^3.1.5",
"generate-changelog": "^1.8.0",
"jasmine": "^3.6.1",
"marked": "^1.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^3.9.0",
"tsx": "^4.19.1",
"typedoc": "^0.26.5",
"typescript": "^5.5.4"
},
"dependencies": {
"cac": "^6.6.1",
"chalk": "^4.1.0",
"cli-spinners": "^2.4.0",
"execa": "^9.6.1",
"figures": "^3.2.0",
"require-from-string": "^2.0.2",
"shell-parser": "^1.0.0",
"strip-ansi": "^6.0.0",
"tslib": "^2.0.1",
"wcwidth": "^1.0.1"
},
"packageManager": "pnpm@9.6.0+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}