@bundlekit/service 0.0.1

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,86 @@
1
+ {
2
+ "name": "@bundlekit/service",
3
+ "version": "0.0.1",
4
+ "main": "./dist/index.cjs",
5
+ "module": "./dist/index.mjs",
6
+ "cjs": "./dist/index.cjs",
7
+ "description": "bundlekit-service is a tool for building and running applications using BundleKit plugins.",
8
+ "bin": {
9
+ "ds": "./dist/index.mjs",
10
+ "bundlekit-service": "./dist/index.cjs"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.cjs",
16
+ "default": "./dist/index.cjs"
17
+ }
18
+ },
19
+ "files": [
20
+ "dist",
21
+ "package.json",
22
+ "README.md"
23
+ ],
24
+ "dependencies": {
25
+ "jiti": "^2.4.2",
26
+ "minimist": "^1.2.8",
27
+ "semver": "^7.7.1",
28
+ "@bundlekit/shared-utils": "0.0.1"
29
+ },
30
+ "peerDependencies": {
31
+ "@bundlekit/bundler-vite": "0.0.1",
32
+ "@bundlekit/bundler-rollup": "0.0.1",
33
+ "@bundlekit/bundler-webpack": "0.0.1",
34
+ "@bundlekit/bundler-rolldown": "0.0.1",
35
+ "@bundlekit/bundler-rspack": "0.0.1"
36
+ },
37
+ "peerDependenciesMeta": {
38
+ "@bundlekit/bundler-webpack": {
39
+ "optional": true
40
+ },
41
+ "@bundlekit/bundler-vite": {
42
+ "optional": true
43
+ },
44
+ "@bundlekit/bundler-rspack": {
45
+ "optional": true
46
+ },
47
+ "@bundlekit/bundler-rollup": {
48
+ "optional": true
49
+ },
50
+ "@bundlekit/bundler-rolldown": {
51
+ "optional": true
52
+ }
53
+ },
54
+ "devDependencies": {
55
+ "@rollup/plugin-commonjs": "^25.0.7",
56
+ "@rollup/plugin-json": "^6.1.0",
57
+ "@rollup/plugin-node-resolve": "^15.2.3",
58
+ "@rollup/plugin-terser": "^0.4.4",
59
+ "@rollup/plugin-typescript": "^11.1.6",
60
+ "@types/minimist": "^1.2.5",
61
+ "@types/semver": "^7.7.0",
62
+ "rimraf": "^5.0.1",
63
+ "rollup": "^4.13.0",
64
+ "tslib": "^2.6.2",
65
+ "tsx": "^4.19.2",
66
+ "typescript": "^5.8.2"
67
+ },
68
+ "keywords": [
69
+ "bundlekit-service",
70
+ "ds"
71
+ ],
72
+ "author": "harhao@163.com",
73
+ "license": "ISC",
74
+ "publishConfig": {
75
+ "registry": "https://registry.npmjs.org/",
76
+ "access": "public"
77
+ },
78
+ "engines": {
79
+ "node": ">= 18.0.0"
80
+ },
81
+ "scripts": {
82
+ "clean": "rimraf -rf ./dist",
83
+ "debug": "tsx ./index.ts serve --bundler webpack --mode production",
84
+ "service:build": "pnpm run clean && rollup -c ./scripts/rollup.config.js"
85
+ }
86
+ }