susee 1.6.0 → 1.6.2
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/README.md +1 -3
- package/dist/index.cjs +81 -45
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +81 -45
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "susee",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "TypeScript-first bundler for library packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -26,27 +26,18 @@
|
|
|
26
26
|
"lint": "biome lint ./src ./__tests__ --write",
|
|
27
27
|
"fmt": "biome format --write",
|
|
28
28
|
"test": "tsx --test",
|
|
29
|
-
"coverage": "npx tsx --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=__tests__/coverage/lcov.info",
|
|
30
29
|
"hooks:install": "bash scripts/install-hooks.sh",
|
|
31
30
|
"commit": "bash scripts/commit.sh",
|
|
32
31
|
"v:patch": "npm version patch --no-git-tag-version",
|
|
33
32
|
"v:minor": "npm version minor --no-git-tag-version",
|
|
34
|
-
"v:major": "npm version major --no-git-tag-version"
|
|
35
|
-
"vercel:install": "npm i mmcov shiki tsx && bundle install",
|
|
36
|
-
"vercel:build": "bash scripts/vercel_build.sh",
|
|
37
|
-
"docs:dev": "bundle exec jekyll serve --profile",
|
|
38
|
-
"docs:init": "bash scripts/setup.sh"
|
|
33
|
+
"v:major": "npm version major --no-git-tag-version"
|
|
39
34
|
},
|
|
40
35
|
"keywords": [
|
|
41
36
|
"bundler",
|
|
42
37
|
"susee",
|
|
43
38
|
"suseejs"
|
|
44
39
|
],
|
|
45
|
-
"author":
|
|
46
|
-
"name": "Pho Thin Mg",
|
|
47
|
-
"email": "phothinmg@disroot.org",
|
|
48
|
-
"url": "https://phothinmg.github.io/"
|
|
49
|
-
},
|
|
40
|
+
"author": "Pho Thin Mg <phothinmg@disroot.org> (https://phothinmg.github.io/)",
|
|
50
41
|
"license": "Apache-2.0",
|
|
51
42
|
"files": [
|
|
52
43
|
"package.json",
|
|
@@ -69,20 +60,20 @@
|
|
|
69
60
|
},
|
|
70
61
|
"dependencies": {
|
|
71
62
|
"@suseejs/color": "^0.0.9",
|
|
72
|
-
"@suseejs/ts6": "^1.0.0"
|
|
73
|
-
"mmcov": "^0.0.8",
|
|
74
|
-
"shiki": "^4.3.1"
|
|
63
|
+
"@suseejs/ts6": "^1.0.0"
|
|
75
64
|
},
|
|
76
65
|
"devDependencies": {
|
|
77
66
|
"@biomejs/biome": "^2.4.12",
|
|
78
67
|
"@suseejs/banner-text-plugin": "^0.0.9",
|
|
79
|
-
"@suseejs/terser-plugin": "^0.0.9",
|
|
80
68
|
"@suseejs/type": "^0.0.9",
|
|
81
69
|
"@types/node": "^25.6.0",
|
|
82
|
-
"tsx": "^4.
|
|
70
|
+
"tsx": "^4.23.1",
|
|
83
71
|
"typescript": "^7.0.2"
|
|
84
72
|
},
|
|
85
73
|
"allowScripts": {
|
|
86
74
|
"esbuild@0.28.1": true
|
|
87
|
-
}
|
|
75
|
+
},
|
|
76
|
+
"workspaces": [
|
|
77
|
+
"susee-docs"
|
|
78
|
+
]
|
|
88
79
|
}
|