@delance/builder 0.2.14 → 0.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +20 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delance/builder",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "A spear to the Python language server built with black magic",
5
5
  "license": "0BSD",
6
6
  "author": "mochaaP <npm@mochaa.ws>",
@@ -12,6 +12,15 @@
12
12
  "files": [
13
13
  "dist"
14
14
  ],
15
+ "scripts": {
16
+ "build": "bun build index.ts cli.ts --target=node --splitting -e=isolated-vm -e=quickjs-emscripten -e=@babel -e=debug --outdir=dist",
17
+ "build:minify": "bun run build --minify --entry-naming [dir]/[name].min.[ext]",
18
+ "build:types": "tsc -p tsconfig.build.json || exit 0",
19
+ "lint": "eslint .",
20
+ "lint:fix": "eslint . --fix",
21
+ "prepare": "rimraf dist && bun run build:types && bun run build",
22
+ "start": "bun cli.ts"
23
+ },
15
24
  "eslintConfig": {
16
25
  "env": {
17
26
  "es2024": true,
@@ -60,14 +69,14 @@
60
69
  ]
61
70
  },
62
71
  "dependencies": {
63
- "@babel/code-frame": "^7.24.7",
64
- "@babel/core": "^7.25.2",
65
- "@babel/generator": "^7.25.0",
66
- "@babel/helper-validator-identifier": "^7.24.7",
67
- "@babel/parser": "^7.25.3",
68
- "@babel/template": "^7.25.0",
69
- "@babel/traverse": "^7.25.3",
70
- "@babel/types": "^7.25.2",
72
+ "@babel/code-frame": "esm",
73
+ "@babel/core": "esm",
74
+ "@babel/generator": "esm",
75
+ "@babel/helper-validator-identifier": "esm",
76
+ "@babel/parser": "esm",
77
+ "@babel/template": "esm",
78
+ "@babel/traverse": "esm",
79
+ "@babel/types": "esm",
71
80
  "quickjs-emscripten": "^0.29.2"
72
81
  },
73
82
  "devDependencies": {
@@ -91,6 +100,7 @@
91
100
  "peerDependencies": {
92
101
  "debug": "^4"
93
102
  },
103
+ "packageManager": "pnpm@9.0.6",
94
104
  "engines": {
95
105
  "node": ">=18"
96
106
  },
@@ -109,13 +119,5 @@
109
119
  "@babel/code-frame": "$@babel/code-frame",
110
120
  "@babel/core": "$@babel/core"
111
121
  }
112
- },
113
- "scripts": {
114
- "build": "bun build index.ts cli.ts --target=node --splitting -e=isolated-vm -e=quickjs-emscripten -e=@babel -e=debug --outdir=dist",
115
- "build:minify": "bun run build --minify --entry-naming [dir]/[name].min.[ext]",
116
- "build:types": "tsc -p tsconfig.build.json || exit 0",
117
- "lint": "eslint .",
118
- "lint:fix": "eslint . --fix",
119
- "start": "bun cli.ts"
120
122
  }
121
- }
123
+ }