-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 931 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 931 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": "plugins",
"type": "module",
"private": true,
"workspaces": ["plugins/*"],
"scripts": {
"lint": "eslint -c eslint.config.js --fix",
"dev": "bun run --inspect-brk=ws://localhost:6499 core/src/exemple.ts",
"build": "bun run build.ts",
"publish-local": "bun run build.ts --local",
"publish": "bun run publish.ts"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/bun": "latest",
"@types/semver": "^7.7.0",
"@types/yargs": "^17.0.33",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.25.9",
"eslint": "^9.34.0",
"glob": "^11.0.3",
"globals": "^16.3.0",
"json5": "^2.2.3",
"semver": "^7.7.2",
"tsup": "^8.5.0",
"typescript-eslint": "^8.41.0",
"yargs": "^18.0.0"
},
"peerDependencies": {
"typescript": "^5.8.3"
},
"trustedDependencies": [
"esbuild"
],
"dependencies": {
"@asterflow/plugin": "^1.0.6"
}
}