-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.98 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
83
84
85
{
"name": "susee",
"version": "1.5.5",
"description": "TypeScript-first bundler for library packages",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"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"
}
}
},
"bin": {
"susee": "bin/susee"
},
"scripts": {
"build": "tsx build.ts",
"lint": "biome check src --write",
"fmt": "biome format --write",
"test": "tsx --test __tests__/test-suites/**/*.test.ts",
"coverage": "tsx __tests__/lcov/index.ts",
"hooks:install": "bash scripts/install-hooks.sh",
"lint:test": "biome check tests --write",
"commit": "bash scripts/commit.sh",
"v:patch": "npm version patch --no-git-tag-version",
"v:minor": "npm version minor --no-git-tag-version",
"v:major": "npm version major --no-git-tag-version",
"docs:init": "node scripts/init.mjs"
},
"keywords": [
"bundler",
"susee",
"suseejs"
],
"author": {
"name": "Pho Thin Mg",
"email": "phothinmg@disroot.org",
"url": "https://phothinmg.github.io/"
},
"license": "Apache-2.0",
"files": [
"package.json",
"README.md",
"LICENSE",
"dist/**/*",
"bin/**/*"
],
"publishConfig": {
"provenance": true,
"access": "public"
},
"repository": {
"url": "git+https://github.com/phothinmg/susee.git",
"type": "git"
},
"homepage": "https://susee.js.org/",
"bugs": {
"url": "https://github.com/phothinmg/susee/issues"
},
"dependencies": {
"@suseejs/bundler": "^0.0.6",
"@suseejs/color": "^0.0.6",
"@suseejs/compiler": "^0.0.6",
"@suseejs/files": "^0.0.6",
"@suseejs/terser-plugin": "^0.0.6",
"@suseejs/tsoptions": "^0.0.6",
"@suseejs/type": "^0.0.6",
"@suseejs/utilities": "^0.0.6",
"typescript": "^6.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@suseejs/banner-text-plugin": "^0.0.6",
"@types/node": "^25.6.0",
"tsx": "^4.21.0"
}
}