susee 1.0.3 → 1.5.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 CHANGED
@@ -1,81 +1,85 @@
1
1
  {
2
- "name": "susee",
3
- "version": "1.0.3",
4
- "description": "Tiny TypeScript Bundler",
5
- "type": "module",
6
- "main": "dist/index.cjs",
7
- "types": "dist/index.d.cts",
8
- "module": "dist/index.mjs",
9
- "exports": {
10
- ".": {
11
- "import": {
12
- "types": "./dist/index.d.mts",
13
- "default": "./dist/index.mjs"
14
- },
15
- "require": {
16
- "types": "./dist/index.d.cts",
17
- "default": "./dist/index.cjs"
18
- }
19
- }
20
- },
21
- "bin": {
22
- "susee": "bin/index.mjs"
23
- },
24
- "scripts": {
25
- "build": "tsx build.ts",
26
- "test": "tsx --test",
27
- "coverage": "tsx tests/lib/index.ts",
28
- "test:init": "tsx --test tests/initialization/initializer.test.ts",
29
- "test:bundle": "tsx --test tests/bundle/index.test.ts",
30
- "test:compile": "tsx --test tests/compile/compiler.test.ts",
31
- "fmt": "biome format --write",
32
- "lint": "biome check src --write && biome check tests --write",
33
- "prepare": "husky"
34
- },
35
- "keywords": [
36
- "bundler"
37
- ],
38
- "author": {
39
- "name": "Pho Thin Mg",
40
- "email": "phothinmg@disroot.org",
41
- "url": "https://phothinmg.github.io/"
42
- },
43
- "license": "Apache-2.0",
44
- "dependencies": {
45
- "@phothinmaung/resolves": "^1.0.0",
46
- "@suseejs/tcolor": "^0.1.0",
47
- "@suseejs/transformer": "^0.1.0",
48
- "@suseejs/tsconfig": "^0.1.1",
49
- "@suseejs/types": "^0.2.0",
50
- "@suseejs/utils": "^0.1.3",
51
- "mhaehko": "^0.1.0",
52
- "typescript": "^5.9.3"
53
- },
54
- "devDependencies": {
55
- "@biomejs/biome": "^2.3.13",
56
- "@suseejs/plugin-banner-text": "^0.1.4",
57
- "@suseejs/plugin-terser": "^1.0.2",
58
- "@types/node": "^25.1.0",
59
- "husky": "^9.1.7",
60
- "tsx": "^4.21.0"
61
- },
62
- "files": [
63
- "package.json",
64
- "README.md",
65
- "LICENSE",
66
- "dist/**/*",
67
- "bin/**/*"
68
- ],
69
- "publishConfig": {
70
- "provenance": true,
71
- "access": "public"
72
- },
73
- "repository": {
74
- "url": "git+https://github.com/phothinmg/susee.git",
75
- "type": "git"
76
- },
77
- "homepage": "https://github.com/phothinmg/susee#readme",
78
- "bugs": {
79
- "url": "https://github.com/phothinmg/susee/issues"
80
- }
81
- }
2
+ "name": "susee",
3
+ "version": "1.5.0",
4
+ "description": "Simple TypeScript Bundler",
5
+ "type": "module",
6
+ "main": "dist/index.cjs",
7
+ "types": "dist/index.d.cts",
8
+ "module": "dist/index.mjs",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.mts",
13
+ "default": "./dist/index.mjs"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ }
20
+ },
21
+ "bin": {
22
+ "susee": "bin/index.mjs"
23
+ },
24
+ "scripts": {
25
+ "build": "tsx build.ts",
26
+ "test": "tsx --test",
27
+ "coverage": "tsx tests/lib/index.ts",
28
+ "test:init": "tsx --test tests/initialization/**.test.ts",
29
+ "test:hook": "tsx --test tests/hooks/**.test.ts",
30
+ "test:com": "tsx --test tests/compile/**.test.ts",
31
+ "fmt": "biome format --write",
32
+ "lint": "biome check src --write",
33
+ "lint:test": "biome check tests --write",
34
+ "prepare": "husky"
35
+ },
36
+ "keywords": [
37
+ "bundler",
38
+ "susee",
39
+ "suseejs"
40
+ ],
41
+ "author": {
42
+ "name": "Pho Thin Mg",
43
+ "email": "phothinmg@disroot.org",
44
+ "url": "https://phothinmg.github.io/"
45
+ },
46
+ "license": "Apache-2.0",
47
+ "dependencies": {
48
+ "@suseejs/resolves": "^0.0.1",
49
+ "@suseejs/tcolor": "^0.1.0",
50
+ "@suseejs/transformer": "^0.1.0",
51
+ "@suseejs/tsconfig": "^0.1.3",
52
+ "@suseejs/types": "^0.2.0",
53
+ "@suseejs/utils": "^0.1.5",
54
+ "mhaehko": "^0.1.0",
55
+ "typescript": "^5.9.3"
56
+ },
57
+ "devDependencies": {
58
+ "@biomejs/biome": "^2.3.13",
59
+ "@suseejs/plugin-banner-text": "^0.2.0 ",
60
+ "@suseejs/plugin-commonjs": "^0.1.3",
61
+ "@suseejs/plugin-terser": "^1.0.32",
62
+ "@types/node": "^25.1.0",
63
+ "husky": "^9.1.7",
64
+ "tsx": "^4.21.0"
65
+ },
66
+ "files": [
67
+ "package.json",
68
+ "README.md",
69
+ "LICENSE",
70
+ "dist/**/*",
71
+ "bin/**/*"
72
+ ],
73
+ "publishConfig": {
74
+ "provenance": true,
75
+ "access": "public"
76
+ },
77
+ "repository": {
78
+ "url": "git+https://github.com/phothinmg/susee.git",
79
+ "type": "git"
80
+ },
81
+ "homepage": "https://github.com/phothinmg/susee#readme",
82
+ "bugs": {
83
+ "url": "https://github.com/phothinmg/susee/issues"
84
+ }
85
+ }