-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "susee",
"version": "2.3.0",
"description": "A high-performance TypeScript library bundler",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.mts",
"module": "dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./cli": {
"import": {
"types": "./dist/cli/index.d.mts",
"default": "./dist/cli/index.mjs"
}
}
},
"keywords": [
"bundler",
"susee",
"suseejs"
],
"homepage": "https://susee.js.org/",
"bugs": {
"url": "https://github.com/phothinmg/susee/issues"
},
"license": "Apache-2.0",
"author": "Pho Thin Mg <phothinmg@disroot.org> (https://phothinmg.github.io/)",
"repository": {
"type": "git",
"url": "git+https://github.com/phothinmg/susee.git"
},
"bin": {
"susee": "bin/susee"
},
"workspaces": [
"susee-docs"
],
"files": [
"README.md",
"LICENSE",
"dist/**/*",
"bin/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"hooks:install": "bash scripts/install-hooks.sh",
"commit": "bash scripts/commit.sh",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"build": "oxnode build.ts",
"test": "oxnode --test tests/**/*.test.ts"
},
"dependencies": {
"@suseejs/susee_bundler": "^0.2.4",
"@suseejs/ts6": "^1.0.0",
"oxc-minify": "^0.148.0"
},
"devDependencies": {
"@oxc-node/cli": "^0.1.0",
"@types/node": "^26.4.1",
"oxfmt": "^0.66.0",
"oxlint": "^1.81.0",
"typescript": "^7.0.2"
},
"allowScripts": {
"esbuild@0.28.2": true
}
}