-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1016 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1016 Bytes
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
{
"name": "@toolx/core",
"author": "William Manco <wmanco88@gmail.com>",
"type": "module",
"engines": {
"npm": ">=10.7.0",
"node": ">=18.17.1"
},
"scripts": {
"remove": "node ./scripts/remove.js",
"create": "node ./scripts/create.js",
"version": "node ./scripts/version.js",
"types": "node ./scripts/types.js && npx -p typescript tsc --project tsconfig.json",
"publish": "npm publish --workspaces",
"test": "npm rebuild && vitest run",
"test:watch": "npm rebuild && vitest",
"docs:dev": "vitepress dev",
"docs:build": "vitepress build --outDir docs/docs",
"docs:preview": "vitepress build && vitepress preview"
},
"workspaces": [
"tools/cli",
"tools/core",
"tools/json",
"tools/svg",
"tools/sharp",
"tools/combine",
"tools/remove",
"tools/imagemin",
"supertools/ffmpeg"
],
"devDependencies": {
"@types/node": "^18.11.9",
"eslint": "^8.30.0",
"vitepress": "^1.0.0-rc.32",
"vitest": "^1.0.4"
}
}