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