dimcode 0.0.4-beta.38
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/cli.mjs +2 -0
- package/dist/cli.mjs +925 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dimcode",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.4-beta.38",
|
|
5
|
+
"description": "Dim Code built on @simon_he/vue-tui",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"import": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"./cli": {
|
|
12
|
+
"types": "./dist/cli.d.ts",
|
|
13
|
+
"import": "./dist/cli.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"main": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"bin": {
|
|
19
|
+
"goatchain": "./cli.mjs"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"cli.mjs",
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "bun run build.mjs",
|
|
27
|
+
"build:npm": "tsdown",
|
|
28
|
+
"build:binary": "bun run build.mjs --binary",
|
|
29
|
+
"build:binary:macos": "bun run build.mjs --binary --target=bun-darwin-arm64",
|
|
30
|
+
"build:binary:macos-x64": "bun run build.mjs --binary --target=bun-darwin-x64",
|
|
31
|
+
"build:binary:linux": "bun run build.mjs --binary --target=bun-linux-x64",
|
|
32
|
+
"build:binary:linux-arm64": "bun run build.mjs --binary --target=bun-linux-arm64",
|
|
33
|
+
"build:binary:windows": "bun run build.mjs --binary --target=bun-windows-x64",
|
|
34
|
+
"cli": "bun src/cli.ts",
|
|
35
|
+
"test": "bun test --preload ./test/setup.ts",
|
|
36
|
+
"smoke": "bun run build && bun dist/cli.mjs --help",
|
|
37
|
+
"lint": "eslint src/**/*.ts",
|
|
38
|
+
"lint:fix": "eslint src/**/*.ts --fix",
|
|
39
|
+
"prepack": "bun run build",
|
|
40
|
+
"fix-package": "bun run fix-package.mjs",
|
|
41
|
+
"restore-package": "bun run restore-package.mjs",
|
|
42
|
+
"release": "bumpp --commit --no-tag --no-push && bun run build && bun publish",
|
|
43
|
+
"release:npm": "bumpp --commit --no-tag --no-push && bun run build:npm && npm publish"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"goatchain": "^0.0.8",
|
|
47
|
+
"semver": "^7.7.3",
|
|
48
|
+
"shiki": "^3.20.0",
|
|
49
|
+
"vue": "^3.4.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/node": "^18.19.111",
|
|
53
|
+
"happy-dom": "^17.5.0",
|
|
54
|
+
"tsdown": "^0.20.0-beta.3",
|
|
55
|
+
"typescript": "5.8.3",
|
|
56
|
+
"vitest": "^4.0.17"
|
|
57
|
+
}
|
|
58
|
+
}
|