-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.25 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
{
"private": true,
"version": "0.0.0",
"description": "pipflow",
"main": "index.js",
"packageManager": "pnpm@8.6.0",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"reinstall": "rm -rf node_modules **/*/node_modules && pnpm install",
"clean": "rm -rf dist packages/*/dist plugins/*/dist docs/.vitepress/cache docs/.vitepress/dist",
"test": "node --experimental-vm-modules scripts/test.js",
"changelog": "node ./scripts/changelog.js",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "changeset publish --registry https://registry.npmjs.org",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"workspaces": [
"packages/*",
"plugins/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"diy-log": "^2.5.1",
"gulp": "^4.0.2",
"jest": "^29.7.0",
"minimist": "^1.2.8",
"rimraf": "5.0.1",
"simple-git": "^3.21.0",
"vinyl": "^3.0.0",
"vitepress": "1.4.1"
}
}