@delance/builder 0.2.0

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.
package/package.json ADDED
@@ -0,0 +1,94 @@
1
+ {
2
+ "name": "@delance/builder",
3
+ "version": "0.2.0",
4
+ "author": "mochaaP <npm@mochaa.ws>",
5
+ "module": "dist/index.js",
6
+ "bin": {
7
+ "delance-builder": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "devDependencies": {
13
+ "@types/babel__generator": "^7",
14
+ "@types/babel__helper-validator-identifier": "^7",
15
+ "@types/babel__template": "^7",
16
+ "@types/babel__traverse": "^7",
17
+ "@types/bun": "^1.0.0",
18
+ "@types/debug": "^4",
19
+ "typescript": "^5.3",
20
+ "webcrack": "https://gitpkg.vercel.app/j4k0xb/webcrack/packages/webcrack",
21
+ "xo": "^0.56.0"
22
+ },
23
+ "description": "A spear to the Python language server built with black magic",
24
+ "engines": {
25
+ "node": ">=18"
26
+ },
27
+ "eslintConfig": {
28
+ "env": {
29
+ "es2024": true,
30
+ "node": true
31
+ },
32
+ "extends": "./node_modules/xo/config/plugins.cjs",
33
+ "overrides": [
34
+ {
35
+ "files": [
36
+ "*.ts",
37
+ "*.tsx"
38
+ ],
39
+ "extends": [
40
+ "xo-typescript"
41
+ ],
42
+ "rules": {
43
+ "@typescript-eslint/naming-convention": "off",
44
+ "@typescript-eslint/consistent-type-definitions": "warn",
45
+ "import/extensions": "off",
46
+ "unicorn/prefer-regexp-test": "off",
47
+ "n/prefer-global/process": "off"
48
+ }
49
+ },
50
+ {
51
+ "files": [
52
+ "utils/matchers/*.ts"
53
+ ],
54
+ "rules": {
55
+ "unicorn/prevent-abbreviations": "off",
56
+ "unicorn/filename-case": "off"
57
+ }
58
+ }
59
+ ],
60
+ "parserOptions": {
61
+ "ecmaVersion": "latest",
62
+ "sourceType": "module"
63
+ },
64
+ "ignorePatterns": [
65
+ "dist"
66
+ ]
67
+ },
68
+ "license": "0BSD",
69
+ "type": "module",
70
+ "peerDependencies": {
71
+ "@babel/generator": "^7",
72
+ "@babel/helper-validator-identifier": "^7",
73
+ "@babel/parser": "^7",
74
+ "@babel/template": "^7",
75
+ "@babel/traverse": "^7",
76
+ "@babel/types": "^7",
77
+ "@codemod/matchers": "^1.7.0",
78
+ "debug": "^4"
79
+ },
80
+ "dependencies": {
81
+ "quickjs-emscripten": "^0.25.1"
82
+ },
83
+ "resolutions": {
84
+ "isolated-vm": "npm:noop3@1000.0.0"
85
+ },
86
+ "scripts": {
87
+ "build": "bun build index.ts cli.ts --target=node --splitting -e=isolated-vm -e=quickjs-emscripten -e=@* -e=debug --sourcemap=external --outdir=dist",
88
+ "build:minify": "bun run build --minify --entry-naming [dir]/[name].min.[ext]",
89
+ "start": "bun cli.ts",
90
+ "prepare": "rimraf dist && bun run build",
91
+ "lint": "eslint .",
92
+ "lint:fix": "eslint . --fix"
93
+ }
94
+ }